Cloud Inject

Inject JS/CSS from any url, into any page

Was ist Cloud Inject?

Cloud Inject ist eine Chrome-Erweiterung, die von Aloong Deng entwickelt wurde, und ihr Hauptmerkmal ist "Inject JS/CSS from any url, into any page".

Erweiterungsscreenshots

screenshot

Cloud Inject-Erweiterungs-CRX-Datei herunterladen

Laden Sie Cloud Inject-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Grundlegende Informationen zur Erweiterung

Name Cloud Inject Cloud Inject
ID hoenhdmdbiehplejoheeklmflmcnidjp
Offizielle URL https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp
Beschreibung Inject JS/CSS from any url, into any page
Dateigröße 51.03 KB
Installationsanzahl 54
Aktuelle Version 1.5
Letztes Update 2017-06-06
Veröffentlichungsdatum 2017-06-06
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler Aloong Deng
Zahlungsart free
Unterstützte Sprachen 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"
}