Inject Code

Inject your own code into any webpage

Qu'est-ce que Inject Code ?

Inject Code est une extension Chrome développée par Yehuda Moskowitz, et sa fonction principale est "Inject your own code into any webpage".

Captures d'Écran de l'Extension

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

                        Write JS/JSX/CSS snippets that can be executed by click of a button.

Features:
*    Custom code or link to an external library
*    Filter on specific URL's
*    Auto run
*    Filter auto run on specific URL's
*    Simple interface
*    Write/Update in separate tab while testing on web page
*    Toggle horizontal/vertical split view in edit mode
*    Toggle full screen in edit mode
*    Choose whether to run in all frames                    

Informations de Base sur l'Extension

Nom Inject Code Inject Code
ID jpbbdgndcngomphbmplabjginoihkdph
URL Officiel https://chromewebstore.google.com/detail/inject-code/jpbbdgndcngomphbmplabjginoihkdph
Description Inject your own code into any webpage
Taille du Fichier 4.68 MB
Nombre d'Installations 1,066
Version Actuelle 1.0.4.7
Dernière Mise à Jour 2024-01-04
Date de Publication 2018-12-18
Évaluation 4.89/5 Total 9 Évaluations
Développeur Yehuda Moskowitz
Email [email protected]
Type de Paiement free
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Inject Code",
    "manifest_version": 2,
    "name": "Inject Code",
    "version": "1.0.4.7",
    "description": "Inject your own code into any webpage",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "images\/inject.png",
        "default_title": "Inject Code Snippets"
    },
    "options_page": "index.html?page=options",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "web_accessible_resources": [],
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "babel.js",
                "content.js"
            ],
            "all_frames": true
        }
    ]
}