Web Code Injector

Add your own code (HTML, CSS, JS) to your favourite websites. A simple fast way to improve :) your favourite websites.

Was ist Web Code Injector?

Web Code Injector ist eine Chrome-Erweiterung, die von Jon Ander Echeverria Sanchez entwickelt wurde, und ihr Hauptmerkmal ist "Add your own code (HTML, CSS, JS) to your favourite websites. A simple fast way to improve :) your favourite websites.".

Erweiterungsscreenshots

screenshot

Web Code Injector-Erweiterungs-CRX-Datei herunterladen

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

                        Add your own code (HTML, CSS, JS) to your favourite websites. You have 3 different ways to work, from the popup in the top icon, from a browser tab or from the development tools (Ctrl + Shift + I or F12)                    

Grundlegende Informationen zur Erweiterung

Name Web Code Injector Web Code Injector
ID gffmljieoedhigbaagdjoipecmbiifkf
Offizielle URL https://chromewebstore.google.com/detail/web-code-injector/gffmljieoedhigbaagdjoipecmbiifkf
Beschreibung Add your own code (HTML, CSS, JS) to your favourite websites. A simple fast way to improve :) your favourite websites.
Dateigröße 2.36 MB
Installationsanzahl 1,130
Aktuelle Version 3.0.2
Letztes Update 2022-05-26
Veröffentlichungsdatum 2019-09-12
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler Jon Ander Echeverria Sanchez
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Web Code Injector",
    "description": "Add your own code (HTML, CSS, JS) to your favourite websites. A simple fast way to improve :) your favourite websites.",
    "manifest_version": 2,
    "version": "3.0.2",
    "short_name": "WCI",
    "icons": {
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "cs.js"
            ]
        }
    ],
    "devtools_page": "devBg.html",
    "browser_action": {
        "default_title": "Web Code Injector",
        "default_icon": "icon128.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "downloads",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'"
}