JS Inject
Create, save, and inject javascript code into web pages.
什麼是JS Inject?
JS Inject是由https://bitwisecreative.com開發的Chrome擴展程式,該擴展的主要功能是“Create, save, and inject javascript code into web pages.”。
擴展截圖
下載JS Inject擴展crx文件
下載JS Inject擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | JS Inject |
ID | pbicaeiggebhcjkenahlamdjgjhbbekc |
官方網址 | https://chromewebstore.google.com/detail/js-inject/pbicaeiggebhcjkenahlamdjgjhbbekc |
簡介 | Create, save, and inject javascript code into web pages. |
檔案大小 | 551 KB |
安裝次數 | 559 |
目前版本 | 1.0.0 |
更新時間 | 2019-11-01 |
上架時間 | 2019-11-01 |
開發者 | https://bitwisecreative.com |
付費類型 | free |
支援的語言 | 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 } |