Web Injector
Inject JavaScript code into every page (e.g. to help with debugging). For example, make your own wrapper for console logging.
What is Web Injector?
Web Injector is a Chrome extension developed by Trevor Reed, and its main feature is "Inject JavaScript code into every page (e.g. to help with debugging). For example, make your own wrapper for console logging.".
Extension Screenshots
Download Web Injector Extension CRX File
Download Web Injector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Web Injector injects whatever custom JavaScript code you want into every web page. You can write an advanced wrapper for console logging; include utility functions for debugging; hide elements by class or id; or any other creative thing you can think of. I hope you enjoy this extension, and if you have ideas for improvement, please share!
Extension Basic Information
Name | Web Injector |
ID | ajpmfpgmlbdhaipikkikomnmkiecpgep |
Official URL | https://chromewebstore.google.com/detail/web-injector/ajpmfpgmlbdhaipikkikomnmkiecpgep |
Description | Inject JavaScript code into every page (e.g. to help with debugging). For example, make your own wrapper for console logging. |
File Size | 152 KB |
Installation Count | 1,144 |
Current Version | 1.0.1 |
Last Updated | 2019-03-08 |
Publish Date | 2019-03-08 |
Rating | 5.00/5 Total 7 Ratings |
Developer | Trevor Reed |
Payment Type | free |
Extension Website | https://github.com/trevorhreed/web-injection |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Injector", "short_name": "W{I}", "author": "Trevor Reed", "description": "Inject JavaScript code into every page (e.g. to help with debugging). For example, make your own wrapper for console logging.", "version": "1.0.1", "permissions": [ "storage" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "persistent": false, "scripts": [ "jquery.min.js", "bg.js" ] }, "options_page": "options.html", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "run_at": "document_end", "js": [ "content.js" ] } ] } |