Load scripts in internal browser windows #134
Answered
by
xiaoxiaoflood
sdavidg
asked this question in
General Support
-
Is it possible to load scripts in internal browser windows? For example, in the debugger iframe: |
Beta Was this translation helpful? Give feedback.
Answered by
xiaoxiaoflood
May 12, 2022
Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
0 replies
-
If you're talking about tab DevTools, just use // ==UserScript==
// @name consoledev
// @author xiaoxiaoflood
// @include about:devtools-toolbox
// ==/UserScript==
console.log('hi'); Of course, |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
sdavidg
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you're talking about tab DevTools, just use
// @include about:devtools-toolbox
in the script. Example:Of course,
console.log
runs in browser context, not in tab context, so you'll only find the log in Browser Console (Ctrl+Shift+J).