Code Injector

Extension for JS & style injecting into the specified website.

Qu'est-ce que Code Injector ?

Code Injector est une extension Chrome développée par martin.suba01, et sa fonction principale est "Extension for JS & style injecting into the specified website.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Code Injector

Téléchargez les fichiers d'extension Code Injector au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Code Injector Code Injector
ID mmngbmmjfjannofkffhoindghfbhcool
URL Officiel https://chromewebstore.google.com/detail/code-injector/mmngbmmjfjannofkffhoindghfbhcool
Description Extension for JS & style injecting into the specified website.
Taille du Fichier 110 KB
Nombre d'Installations 1,016
Version Actuelle 0.0.1
Dernière Mise à Jour 2020-02-06
Date de Publication 2020-02-06
Évaluation 3.30/5 Total 10 Évaluations
Développeur martin.suba01
Type de Paiement free
Langues Prises en Charge 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"
    }
}