JS Inject

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

Was ist JS Inject?

JS Inject ist eine Chrome-Erweiterung, die von https://bitwisecreative.com entwickelt wurde, und ihr Hauptmerkmal ist "Create, save, and inject javascript code into web pages.".

Erweiterungsscreenshots

screenshot

JS Inject-Erweiterungs-CRX-Datei herunterladen

Laden Sie JS Inject-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name JS Inject JS Inject
ID pbicaeiggebhcjkenahlamdjgjhbbekc
Offizielle URL https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc
Beschreibung Create, save, and inject javascript code into web pages.
Dateigröße 551 KB
Installationsanzahl 559
Aktuelle Version 1.0.0
Letztes Update 2019-11-01
Veröffentlichungsdatum 2019-11-01
Entwickler https://bitwisecreative.com
Zahlungsart free
Unterstützte Sprachen 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
}