Code Injector

Inject code into websites! (JavaScript, CSS, HTML and Files)

Qu'est-ce que Code Injector ?

Code Injector est une extension Chrome développée par Urmil Parikh, et sa fonction principale est "Inject code into websites! (JavaScript, CSS, HTML and Files)".

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

                        A WebExtensions based addon which let the user inject code into the websites. A very handy tool for developers and for automation.

This extension allows you to inject custom JavaScript code, custom CSS or even custom HTML to any web page.

Use it to customize appearance of a page, to auto-fill / auto-click forms on a page or to get rid of selective elements (e.g. advertisements) from a page. Get the control back on your browsing experience.

Backup / restore or share your rules using import/export feature (from Options).

Source code for this extension is available in GitHub, original work by L.Sabatelli.                    

Informations de Base sur l'Extension

Nom Code Injector Code Injector
ID jgcallaoodbhagkaoobenaabockcejmc
URL Officiel https://chrome.google.com/webstore/detail/code-injector/jgcallaoodbhagkaoobenaabockcejmc
Description Inject code into websites! (JavaScript, CSS, HTML and Files)
Taille du Fichier 1.83 MB
Nombre d'Installations 2,000
Version Actuelle 0.3.2
Dernière Mise à Jour 2020-02-25
Date de Publication 2020-02-25
Évaluation 5.00/5 Total 8 Évaluations
Développeur Urmil Parikh
Type de Paiement free
Site Web de l'Extension https://github.com/urmilparikh/Code-Injector
URL de la Page d'Aide https://github.com/urmilparikh/Code-Injector#quick-start
Langues Prises en Charge en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Injector",
    "version": "0.3.2",
    "author": "L.Sabatelli",
    "description": "Inject code into websites! (JavaScript, CSS, HTML and Files)",
    "permissions": [
        "",
        "tabs",
        "activeTab",
        "storage",
        "webNavigation"
    ],
    "icons": {
        "16": "style\/images\/icon\/icon-16px.png",
        "24": "style\/images\/icon\/icon-24px.png",
        "32": "style\/images\/icon\/icon-32px.png",
        "48": "style\/images\/icon\/icon-48px.png",
        "64": "style\/images\/icon\/icon-64px.png",
        "96": "style\/images\/icon\/icon-96px.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "style\/images\/icon\/icon-16px.png",
            "24": "style\/images\/icon\/icon-24px.png",
            "32": "style\/images\/icon\/icon-32px.png",
            "48": "style\/images\/icon\/icon-48px.png",
            "64": "style\/images\/icon\/icon-64px.png",
            "96": "style\/images\/icon\/icon-96px.png"
        },
        "default_title": "Code Injector",
        "default_popup": "html\/browser-action.html"
    },
    "background": {
        "scripts": [
            "script\/browser-polyfill.min.js",
            "script\/background.js"
        ]
    },
    "options_ui": {
        "page": "html\/options-ui.html"
    }
}