Cloud Inject

Inject JS/CSS from any url, into any page

Cos'è Cloud Inject?

Cloud Inject è un'estensione di Chrome sviluppata da Aloong Deng, e la sua funzione principale è "Inject JS/CSS from any url, into any page".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Cloud Inject

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

                        You can inject JS/CSS files from any url, into any page, while jQuery is automatically injected.                    

Informazioni di Base sull'Estensione

Nome Cloud Inject Cloud Inject
ID hoenhdmdbiehplejoheeklmflmcnidjp
URL Ufficiale https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp
Descrizione Inject JS/CSS from any url, into any page
Dimensione del File 51.03 KB
Conteggio Installazioni 54
Versione Corrente 1.5
Ultimo Aggiornamento 2017-06-06
Data di Pubblicazione 2017-06-06
Valutazione 3.67/5 Totale 3 Valutazioni
Sviluppatore Aloong Deng
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cloud Inject",
    "version": "1.5",
    "manifest_version": 2,
    "description": "Inject JS\/CSS from any url, into any page",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "jquery.js",
        "inject_script.js",
        "inject_css.css"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Cloud Inject",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/cloud-inject\/hoenhdmdbiehplejoheeklmflmcnidjp"
}