Inject JS
This extension will inject javascript from a URL into the current webpage
Cos'è Inject JS?
Inject JS è un'estensione di Chrome sviluppata da dailenspencer12, e la sua funzione principale è "This extension will inject javascript from a URL into the current webpage".
Scarica il file CRX dell'estensione Inject JS
Scarica i file di estensione Inject JS 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
Informazioni di Base sull'Estensione
| Nome | |
| ID | ppbefedgpemhmbmiehiodeobnoekdhfo |
| URL Ufficiale | https://chrome.google.com/webstore/detail/inject-js/ppbefedgpemhmbmiehiodeobnoekdhfo |
| Descrizione | This extension will inject javascript from a URL into the current webpage |
| Dimensione del File | 40.14 KB |
| Conteggio Installazioni | 80 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2016-09-29 |
| Data di Pubblicazione | 2016-09-29 |
| Sviluppatore | dailenspencer12 |
| Tipo di Pagamento | free |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Inject JS",
"description": "This extension will inject javascript from a URL into the current webpage",
"version": "1.1",
"browser_action": {
"default_icon": "rocket.png",
"default_popup": "popup.html"
},
"content_scripts": [
{
"matches": [
"http:\/\/www.google.com\/*"
],
"css": [
"style.css"
],
"js": [
"jquery.min.js",
"popup.js"
]
}
],
"icons": {
"128": "rocket128.png"
},
"permissions": [
"activeTab"
]
} | |