Code Injector

Extension for JS & style injecting into the specified website.

Was ist Code Injector?

Code Injector ist eine Chrome-Erweiterung, die von martin.suba01 entwickelt wurde, und ihr Hauptmerkmal ist "Extension for JS & style injecting into the specified website.".

Erweiterungsscreenshots

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

                        Tool for injecting custom JavaScript and CSS into website specified by domain. Uses Chrome storage sync API to store your scripts. You can create and edit your scripts in the tab UI of the extension which opens on extension icon click. There's jQuery support for JavaScript codes.

Features:
✔️ injects JS and CSS code into website specified by domain match
✔️ supports jQuery v3.4.1
✔️ tab UI for script management
✔️ simple code editor with JS/CSS text highlight                    

Grundlegende Informationen zur Erweiterung

Name Code Injector Code Injector
ID mmngbmmjfjannofkffhoindghfbhcool
Offizielle URL https://chromewebstore.google.com/detail/code-injector/mmngbmmjfjannofkffhoindghfbhcool
Beschreibung Extension for JS & style injecting into the specified website.
Dateigröße 110 KB
Installationsanzahl 1,016
Aktuelle Version 0.0.1
Letztes Update 2020-02-06
Veröffentlichungsdatum 2020-02-06
Bewertung 3.30/5 Insgesamt 10 Bewertungen
Entwickler martin.suba01
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Injector",
    "description": "Extension for JS & style injecting into the specified website.",
    "version": "0.0.1",
    "author": "Martin Suba",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon64.png"
        },
        "default_title": "Open the Code Injector in tab"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "content-script.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}