Kode Injector

Helps to inject JavaScript and CSS from local files

Was ist Kode Injector?

Kode Injector ist eine Chrome-Erweiterung, die von maximtop entwickelt wurde, und ihr Hauptmerkmal ist "Helps to inject JavaScript and CSS from local files".

Erweiterungsscreenshots

screenshot
screenshot

Kode Injector-Erweiterungs-CRX-Datei herunterladen

Laden Sie Kode 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

                        Kode Injector helps you to modify sites you are visiting with you browser via injecting JavaScript or CSS code.

IMPORTANT:
This extension need "Allow access to file URLs" to be activated
Links to local files should have "file" protocol, for example: "file:///index.js"

Please fill free to submit your issues here: https://gitlab.com/maximtop/kode-injector/issues                    

Grundlegende Informationen zur Erweiterung

Name Kode Injector Kode Injector
ID fgdehkdkmaiedleekbjpfoicpmodbicg
Offizielle URL https://chromewebstore.google.com/detail/kode-injector/fgdehkdkmaiedleekbjpfoicpmodbicg
Beschreibung Helps to inject JavaScript and CSS from local files
Dateigröße 547 KB
Installationsanzahl 237
Aktuelle Version 0.7.4
Letztes Update 2023-05-01
Veröffentlichungsdatum 2018-03-06
Entwickler maximtop
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://gitlab.com/maximtop/kode-injector
Hilfeseite URL https://gitlab.com/maximtop/kode-injector/issues
Unterstützte Sprachen en,ru
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_name__",
    "description": "__MSG_description__",
    "default_locale": "en",
    "options_page": "options.html",
    "icons": {
        "16": "assets\/img\/icon-16.png",
        "32": "assets\/img\/icon-32.png",
        "48": "assets\/img\/icon-48.png",
        "128": "assets\/img\/icon-128.png"
    },
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": {
            "16": "assets\/img\/icon-16.png",
            "32": "assets\/img\/icon-32.png"
        },
        "default_title": "__MSG_name__",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "",
        "storage"
    ],
    "version": "0.7.4"
}