Inject Code

Inject different javascript or css code to every website, when you want

Qu'est-ce que Inject Code ?

Inject Code est une extension Chrome développée par max, et sa fonction principale est "Inject different javascript or css code to every website, when you want".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot
screenshot
screenshot

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

Téléchargez les fichiers d'extension Inject Code 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

                        Extension will remember all css/js code you injected in every website and auto-inject them when web page is loaded.

Features:
-  inject custom js/css to website
-  inject CDN links to website
- 38 most popular themes
- auto-inject code to site option ( after loaded page scripts will inject automatically)
- highlight syntax errors and warnings
- hot keys : 
* Ctrl+Enter - run code, 
* Ctrl+F - find in editor

For inject code to site:
- open browser devtools panel,
- go to  "Inject code" tab
- write code ( on typing code autosaving  )
- on right top corner set ckeckbox "Inject code", and after reload code will be injecting to page ( or press buttom Play for once execute code )                    

Informations de Base sur l'Extension

Nom Inject Code Inject Code
ID gpaakhhkcmlenabckmapmlfnajboobbi
URL Officiel https://chromewebstore.google.com/detail/inject-code/gpaakhhkcmlenabckmapmlfnajboobbi
Description Inject different javascript or css code to every website, when you want
Taille du Fichier 2.96 MB
Nombre d'Installations 792
Version Actuelle 0.91.21
Dernière Mise à Jour 2020-08-04
Date de Publication 2020-07-06
Évaluation 4.00/5 Total 6 Évaluations
Développeur max
Email maxym2010i@gmail.com
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Inject Code",
    "description": "Inject different javascript or css code to every website, when you want",
    "version": "0.91.21",
    "minimum_chrome_version": "16.0.884",
    "permissions": [
        "activeTab",
        "*:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "128": "128.png"
    },
    "devtools_page": "devtools.html",
    "manifest_version": 2
}