Cloud Inject

Inject JS/CSS from any url, into any page

Vad är Cloud Inject?

Cloud Inject är en Chrome-tillägg utvecklad av Aloong Deng, och dess huvudfunktion är "Inject JS/CSS from any url, into any page".

Tilläggsskärmbilder

screenshot

Ladda ner Cloud Inject-förlängningens CRX-fil

Ladda ner Cloud Inject-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Cloud Inject Cloud Inject
ID hoenhdmdbiehplejoheeklmflmcnidjp
Officiell webbadress https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp
Beskrivning Inject JS/CSS from any url, into any page
Filstorlek 51.03 KB
Antal Installationer 54
Aktuell Version 1.5
Senast Uppdaterad 2017-06-06
Publiceringsdatum 2017-06-06
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Aloong Deng
Betalningssätt free
Stödda Språk 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"
}