Code Injector

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

Qu'est-ce que Code Injector ?

Code Injector est une extension Chrome développée par dmitry.pechkovsky, et sa fonction principale est "Inject your code (html, css, js) into page.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
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

                        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.                    

Informations de Base sur l'Extension

Nom Code Injector Code Injector
ID fehfokkkkeamcfiaogfdkkpoblipkmbd
URL Officiel https://chrome.google.com/webstore/detail/code-injector/fehfokkkkeamcfiaogfdkkpoblipkmbd
Description Inject your code (html, css, js) into page.
Taille du Fichier 399 KB
Nombre d'Installations 1,000
Version Actuelle 1.14
Dernière Mise à Jour 2019-03-08
Date de Publication 2019-03-08
Évaluation 3.42/5 Total 19 Évaluations
Développeur dmitry.pechkovsky
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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
    }
}