JS Inject
Create, save, and inject javascript code into web pages.
Wat is JS Inject?
JS Inject is een Chrome-extensie ontwikkeld door https://bitwisecreative.com, en de belangrijkste functie is "Create, save, and inject javascript code into web pages.".
Extensie Screenshots
Download het CRX-bestand van de extensie JS Inject
Download JS Inject-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | JS Inject |
ID | pbicaeiggebhcjkenahlamdjgjhbbekc |
Officiële URL | https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc |
Beschrijving | Create, save, and inject javascript code into web pages. |
Bestandsgrootte | 551 KB |
Aantal Installaties | 559 |
Huidige Versie | 1.0.0 |
Laatst Bijgewerkt | 2019-11-01 |
Publicatiedatum | 2019-11-01 |
Ontwikkelaar | https://bitwisecreative.com |
Betalingswijze | free |
Ondersteunde Talen | 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 } |