Code Injector

Inject your code (html, css, js) into page.

Was ist Code Injector?

Code Injector ist eine Chrome-Erweiterung, die von dmitry.pechkovsky entwickelt wurde, und ihr Hauptmerkmal ist "Inject your code (html, css, js) into page.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot
screenshot

Code Injector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Code Injector-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

                        Inject your own code (html, css, js) into any page.
Customize, configure, parse any page!

What' new in 1.13:
- Libraries!

What' new in 1.14:
- Bugfixes.                    

Grundlegende Informationen zur Erweiterung

Name Code Injector Code Injector
ID fehfokkkkeamcfiaogfdkkpoblipkmbd
Offizielle URL https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd
Beschreibung Inject your code (html, css, js) into page.
Dateigröße 399 KB
Installationsanzahl 1,000
Aktuelle Version 1.14
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 3.42/5 Insgesamt 19 Bewertungen
Entwickler dmitry.pechkovsky
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Code Injector",
    "description": "Inject your code (html, css, js) into page.",
    "manifest_version": 2,
    "version": "1.14",
    "icons": {
        "16": "assets\/icons\/icon16.png",
        "48": "assets\/icons\/icon48.png",
        "128": "assets\/icons\/icon128.png"
    },
    "permissions": [
        "downloads",
        "storage",
        "unlimitedStorage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_title": "Code Injector",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "functions.js",
                "config.js",
                "background.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}