AddJS
This extension allows you to add your own custom website specific JavaScript.
Cos'è AddJS?
AddJS è un'estensione di Chrome sviluppata da http://mkhsoft.eu, e la sua funzione principale è "This extension allows you to add your own custom website specific JavaScript.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AddJS
Scarica i file di estensione AddJS 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
AddJS is a light-weight extension for injecting your own JavaScript to a website. You can define domain specific JavaScript snippets that will be injected to all sites in that web domain. Furthermore, your snippets are synchronised automatically to all Chrome browsers you are using on different machines.
Informazioni di Base sull'Estensione
Nome | |
ID | ikdcaklgiaookdchoncnfcidafmmlndm |
URL Ufficiale | https://chrome.google.com/webstore/detail/addjs/ikdcaklgiaookdchoncnfcidafmmlndm |
Descrizione | This extension allows you to add your own custom website specific JavaScript. |
Dimensione del File | 57.22 KB |
Conteggio Installazioni | 165 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2017-01-19 |
Data di Pubblicazione | 2017-01-19 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | http://mkhsoft.eu |
Tipo di Pagamento | free |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "AddJS", "description": "This extension allows you to add your own custom website specific JavaScript.", "version": "1.0", "browser_action": { "default_icon": "icon64.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "64": "icon64.png", "128": "icon128.png", "256": "icon128.png" }, "background": { "scripts": [ "logic.js", "background.js" ] }, "permissions": [ "activeTab", "tabs", "storage", "http:\/\/*\/", "https:\/\/*\/" ] } |