JS Inject

Create, save, and inject javascript code into web pages.

Cos'è JS Inject?

JS Inject è un'estensione di Chrome sviluppata da https://bitwisecreative.com, e la sua funzione principale è "Create, save, and inject javascript code into web pages.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione JS Inject

Scarica i file di estensione JS Inject 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

                        This extension allows you to write, save, and execute javascript into web pages. You can save scripts to be run globally (on any page), on a specific domain, on a specific page, or via a "URL contains" string. It uses the CodeMirror editor, configured for javascript editing, and includes both light and dark themes. All data is stored in localStorage.                    

Informazioni di Base sull'Estensione

Nome JS Inject JS Inject
ID pbicaeiggebhcjkenahlamdjgjhbbekc
URL Ufficiale https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc
Descrizione Create, save, and inject javascript code into web pages.
Dimensione del File 551 KB
Conteggio Installazioni 559
Versione Corrente 1.0.0
Ultimo Aggiornamento 2019-11-01
Data di Pubblicazione 2019-11-01
Sviluppatore https://bitwisecreative.com
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JS Inject",
    "version": "1.0.0",
    "description": "Create, save, and inject javascript code into web pages.",
    "permissions": [
        "activeTab",
        "storage",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "tabs",
        "unlimitedStorage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "JS Inject",
        "default_icon": {
            "16": "images\/js-inject16.png",
            "32": "images\/js-inject32.png",
            "48": "images\/js-inject48.png",
            "128": "images\/js-inject128.png"
        }
    },
    "icons": {
        "16": "images\/js-inject16.png",
        "32": "images\/js-inject32.png",
        "48": "images\/js-inject48.png",
        "128": "images\/js-inject128.png"
    },
    "manifest_version": 2
}