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.”。

扩展截图

screenshot

下载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 JS Inject
ID pbicaeiggebhcjkenahlamdjgjhbbekc
官方URL 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
}