Javascript Injector
Inject javascript to the webpage you are visiting
Cos'è Javascript Injector?
Javascript Injector è un'estensione di Chrome sviluppata da Daniel Han, e la sua funzione principale è "Inject javascript to the webpage you are visiting".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Javascript Injector
Scarica i file di estensione Javascript Injector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
This extension allows you to inject any javascript code into the web page you are visiting. It remembers your page specific script and syncs it across all your devices. For example, if you want to change the background color of https://duckduckgo.com/ with light blue, you can inject the script 'document.body.style.backgroundColor = "lightblue";' using this extension. After that every time you open this web site, the back ground will be light blue automatically.
Informazioni di Base sull'Estensione
Nome | Javascript Injector |
ID | ejnccfcackblkelbafbolcpjfpcmbplg |
URL Ufficiale | https://chromewebstore.google.com/detail/javascript-injector/ejnccfcackblkelbafbolcpjfpcmbplg |
Descrizione | Inject javascript to the webpage you are visiting |
Dimensione del File | 59.53 KB |
Conteggio Installazioni | 2,000 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2017-06-16 |
Data di Pubblicazione | 2017-06-16 |
Valutazione | 4.13/5 Totale 8 Valutazioni |
Sviluppatore | Daniel Han |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/hex0cter/js-injector |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Javascript Injector", "author": "Daniel Han", "short_name": "JS injector", "description": "Inject javascript to the webpage you are visiting", "version": "1.2", "browser_action": { "default_icon": { "16": "images\/icon16.png", "24": "images\/icon24.png", "32": "images\/icon32.png", "128": "images\/icon128.png" }, "default_title": "Javascript Injector", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "permissions": [ "activeTab", "storage", "tabs", "activeTab", "http:\/\/*\/", "https:\/\/*\/" ] } |