Code Injector

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

Cos'è Code Injector?

Code Injector è un'estensione di Chrome sviluppata da Urmil Parikh, e la sua funzione principale è "Inject code into websites! (JavaScript, CSS, HTML and Files)".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Code Injector

Scarica i file di estensione Code Injector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Code Injector Code Injector
ID jgcallaoodbhagkaoobenaabockcejmc
URL Ufficiale https://chrome.google.com/webstore/detail/code-injector/jgcallaoodbhagkaoobenaabockcejmc
Descrizione Inject code into websites! (JavaScript, CSS, HTML and Files)
Dimensione del File 1.83 MB
Conteggio Installazioni 2,000
Versione Corrente 0.3.2
Ultimo Aggiornamento 2020-02-25
Data di Pubblicazione 2020-02-25
Valutazione 5.00/5 Totale 8 Valutazioni
Sviluppatore Urmil Parikh
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/urmilparikh/Code-Injector
URL della Pagina di Aiuto https://github.com/urmilparikh/Code-Injector#quick-start
Lingue Supportate 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"
    }
}