JavaScript Injector
Inject javascript in a given website.
Cos'è JavaScript Injector?
JavaScript Injector è un'estensione di Chrome sviluppata da luisnaia, e la sua funzione principale è "Inject javascript in a given website.".
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 chrome extension has the purpose of injecting Java Script into a target URL every time that page loads.
You can inject your favourite script to extend the page functionality.
Features
- Add urls with or without regular expressions
- Keep a list of your urls and edit your js code inline
- You can turn on/off the js code when you wish
- Search trough your URLs Informazioni di Base sull'Estensione
| Nome | |
| ID | knmnopfmccchnnfdoiddbihbcboeedll |
| URL Ufficiale | https://chromewebstore.google.com/detail/javascript-injector/knmnopfmccchnnfdoiddbihbcboeedll |
| Descrizione | Inject javascript in a given website. |
| Dimensione del File | 397 KB |
| Conteggio Installazioni | 5,062 |
| Versione Corrente | 1.0.4 |
| Ultimo Aggiornamento | 2014-08-21 |
| Data di Pubblicazione | 2014-08-21 |
| Valutazione | 2.91/5 Totale 33 Valutazioni |
| Sviluppatore | luisnaia |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/darkbls/jsinjector |
| URL della Pagina di Aiuto | https://github.com/darkbls/jsinjector |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "JavaScript Injector",
"short_name": "Js Injector",
"description": "Inject javascript in a given website. ",
"version": "1.0.4",
"browser_action": {
"default_icon": "icon72.png",
"default_title": "Activate Js Inject rules - Click to add a new rule"
},
"permissions": [
"tabs",
"http:\/\/*\/*",
"https:\/\/*\/*",
"activeTab",
"storage",
"webNavigation"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"options_page": "options.html",
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
}
} | |