Inject Javascript -- Synced & Open Source
Inject javascript in web pages, synced across your devices
Qu'est-ce que Inject Javascript -- Synced & Open Source ?
Inject Javascript -- Synced & Open Source est une extension Chrome développée par quentin.bramas, et sa fonction principale est "Inject javascript in web pages, synced across your devices".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Inject Javascript -- Synced & Open Source
Téléchargez les fichiers d'extension Inject Javascript -- Synced & Open Source au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Inject Javascript -- Synced & Open Source |
ID | aechnpkbeoilkginaangjabdhcknecck |
URL Officiel | https://chromewebstore.google.com/detail/inject-javascript-synced/aechnpkbeoilkginaangjabdhcknecck |
Description | Inject javascript in web pages, synced across your devices |
Taille du Fichier | 538 KB |
Nombre d'Installations | 356 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2020-03-28 |
Date de Publication | 2020-03-26 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | quentin.bramas |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Bramas/Synced-Injected-Scripts |
Langues Prises en Charge | 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 } |