JS Inject
Create, save, and inject javascript code into web pages.
Hvad er JS Inject?
JS Inject er en Chrome-udvidelse udviklet af https://bitwisecreative.com, og dens hovedfunktion er "Create, save, and inject javascript code into web pages.".
Udvidelsesskærmbilleder
Download JS Inject-udvidelses-CRX-fil
Download JS Inject-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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.
Grundlæggende oplysninger om udvidelsen
Navn | JS Inject |
ID | pbicaeiggebhcjkenahlamdjgjhbbekc |
Officiel URL | https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc |
Beskrivelse | Create, save, and inject javascript code into web pages. |
Filstørrelse | 551 KB |
Antal Installationer | 559 |
Nuværende Version | 1.0.0 |
Senest Opdateret | 2019-11-01 |
Udgivelsesdato | 2019-11-01 |
Udvikler | https://bitwisecreative.com |
Betalingsmetode | free |
Understøttede Sprog | 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 } |