ScriptAutoRunner

Injects to any Script into a Website. It can be autorun as well.

Cos'è ScriptAutoRunner?

ScriptAutoRunner è un'estensione di Chrome sviluppata da nakajmg, e la sua funzione principale è "Injects to any Script into a Website. It can be autorun as well.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ScriptAutoRunner

Scarica i file di estensione ScriptAutoRunner 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

                        More detail, see https://github.com/nakajmg/ScriptAutoRunner/README.md                    

Informazioni di Base sull'Estensione

Nome ScriptAutoRunner ScriptAutoRunner
ID gpgjofmpmjjopcogjgdldidobhmjmdbm
URL Ufficiale https://chromewebstore.google.com/detail/scriptautorunner/gpgjofmpmjjopcogjgdldidobhmjmdbm
Descrizione Injects to any Script into a Website. It can be autorun as well.
Dimensione del File 130 KB
Conteggio Installazioni 10,000
Versione Corrente 0.1.0
Ultimo Aggiornamento 2015-09-23
Data di Pubblicazione 2015-09-23
Valutazione 4.87/5 Totale 31 Valutazioni
Sviluppatore nakajmg
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScriptAutoRunner",
    "description": "Injects to any Script into a Website. It can be autorun as well.",
    "version": "0.1.0",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "options_page": "options.html",
    "content_security_policy": "allow-scripts; script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "ScriptAutoRunner"
    },
    "permissions": [
        "tabs",
        ""
    ]
}