Inject Javascript -- Synced & Open Source
Inject javascript in web pages, synced across your devices
What is Inject Javascript -- Synced & Open Source?
Inject Javascript -- Synced & Open Source is a Chrome extension developed by quentin.bramas, and its main feature is "Inject javascript in web pages, synced across your devices".
Extension Screenshots
Download Inject Javascript -- Synced & Open Source Extension CRX File
Download Inject Javascript -- Synced & Open Source 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
This extension allows you to add custom js to any web page. Due to the critical risk of this kind of extension, I made this extension open source, and very small so that is it easy to check that it does not do anything bad. https://github.com/Bramas/Synced-Injected-Scripts Everything you type is automatically saved and synced. You can use call the function `injectLibs([lib1url, lib2url, ...], calllback)` to inject libraries before your script
Extension Basic Information
Name | Inject Javascript -- Synced & Open Source |
ID | aechnpkbeoilkginaangjabdhcknecck |
Official URL | https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck |
Description | Inject javascript in web pages, synced across your devices |
File Size | 538 KB |
Installation Count | 356 |
Current Version | 1.1 |
Last Updated | 2020-03-28 |
Publish Date | 2020-03-26 |
Rating | 5.00/5 Total 1 Ratings |
Developer | quentin.bramas |
Payment Type | free |
Extension Website | https://github.com/Bramas/Synced-Injected-Scripts |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inject Javascript -- Synced & Open Source", "version": "1.1", "description": "Inject javascript in web pages, synced across your devices", "permissions": [ "activeTab", "storage" ], "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [], "js": [ "contentScript.js" ] } ], "browser_action": { "default_popup": "popup.html", "default_icon": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" } }, "icons": { "72": "images\/icon-72x72.png", "128": "images\/icon-128x128.png", "512": "images\/icon-512x512.png" }, "manifest_version": 2 } |