What's the best way to debug custom User Scripts (aka Greasemonkey) in Chrome? Is there a way to enable User Script tracking in the Developer Tools?
|
What kind of debugging do you want? Like Alex said, user scripts will be listed in the same context as debugging the page itself. If you go to the "scripts" tab in the developer tools, you'll see a bar with a dropdown which will allow you to select the appropriate javascript file you wish to debug. Such scripts should have urls that look like Additionally, if you want to log in the same place for all pages, you can try building your script as a full chrome extension, using the user script as a content script. Then you can send a message from your content script to your background page and log there. For example, if this were your content script:
And this were your background page:
You would see each load of the content script in the background page's log. |
|||
|
|
|
i user the following function in my scripts for cross-browser GM Api compatibility:
it's not mine. it's courtesy sizzemctwizzle @ userscripts.org i only use log, getValue & setValue as of now, hence only these tree in that function. |
||||
|
|
|
You could use a smaller script to actually inject your custom debug script into the page. At that point you will have the same access inside of developer tools as if it was actually included on the page. |
|||||
|