JS Inject
Create, save, and inject javascript code into web pages.
Co je JS Inject?
JS Inject je rozšíření Chrome vyvinuté https://bitwisecreative.com, a jeho hlavní funkcí je „Create, save, and inject javascript code into web pages.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření JS Inject
Stáhněte si soubory rozšíření JS Inject ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | JS Inject |
ID | pbicaeiggebhcjkenahlamdjgjhbbekc |
Oficiální URL | https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc |
Popis | Create, save, and inject javascript code into web pages. |
Velikost souboru | 551 KB |
Počet instalací | 559 |
Aktuální Verze | 1.0.0 |
Poslední Aktualizace | 2019-11-01 |
Datum Vydání | 2019-11-01 |
Vývojář | https://bitwisecreative.com |
Typ Platby | free |
Podporované Jazyky | 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 } |