Web Inspector
A lightweight, in-page developer toolkit for any browser, on any device.
- Show your bookmarks bar (
Ctrl+Shift+B
orCmd+Shift+B
). - Right-click it and select "Add page...".
- For "Name", enter
Web Inspector
. - For "URL", paste the code copied from above. Click "Save".
- Bookmark this page: tap Share , then "Add Bookmark".
- Edit the bookmark: tap Bookmarks , find it, tap "Edit".
- Tap the bookmark, clear the address field, and paste the code.
- Tap "Done". To run, open bookmarks and select "Web Inspector".
- Bookmark this page. Go to
chrome://bookmarks
. - Find the new bookmark, tap the three dots , and select "Edit".
- Change the "Name" to
Web Inspector
. - Replace the "URL" with the code you copied. Save.
Persistent Installation (Advanced)
Use a browser extension like Tampermonkey to automatically activate the toolkit on every page load.
- Once installed, click the extension's icon and select "Create a new script...".
- Delete the default content and paste the following code into the editor:
// ==UserScript==
// @name DevTools Injector
// @namespace https://dev-tools-inspector.vercel.app
// @version 1.0
// @description Inject remote devtools script into pages
// @match *://*/*
// @run-at document-idle
// @grant none
// ==/UserScript==
(function () {
'use strict';
const SRC = 'https://dev-tools-inspector.vercel.app/javascript/main/devtools.js';
if (document.querySelector(`script[src="${SRC}"]`)) return;
const s = document.createElement('script');
s.src = SRC;
s.type = 'text/javascript';
s.async = true;
s.onload = () => { /* loaded */ };
document.documentElement.appendChild(s);
})();
- Go to the "File" menu and click "Save".
- The script is now active. To disable it, click the extension icon and untoggle "DevTools Injector".