DEPRECATION: This protocol adapter has never left it's experimantal stage, and does currently nok work with Chrome DevTools, as the Remote Debugging API's have diverged. If you want to collaborate please reach out to me.
This is a protocol adaptor that allows you to remote debug Firefox instances via RemoteDebug, aka Chrome Debugging protocol, with tools like Chrome DevTools.
- Run
npm install
- Start Firefox with remote debugging enabled using
path/to/firefox --start-debugger-server
- Run
npm start
- Open
http://localhost:9222/json
in Chrome. - Locate your tab in the json-output, and open the
devtoolsUrl
url in Chrome. - Bam! Champagne!
This project is in the very early stage. The basic shell is there to expose a RemoteDebug compliant server: Listen and trigger notifications, handle multiple connections, etc.
Current supported operations:
- Console: Evaluate expression
- DOM: getDocument
- DOM: highlightNode
- DOM: hideHighlight
- DOM: setAttributesAsText
To enable remote debugging on the device, you need to set the devtools.debugger.remote-enabled preference to true.
Go to about:config in Firefox for Android, type "devtools" into the search box and press the Search key. You'll see all the devtools preferences. Find the devtools.debugger.remote-enabled preference, and press "Toggle".
Should already be enabled.