Js-Injection

Javascript Injection Extenstion Tool for Chromium-based Web browsers

什么是Js-Injection?

Js-Injection是由AnOldStory开发的Chrome扩展程序,该扩展的主要功能是“Javascript Injection Extenstion Tool for Chromium-based Web browsers”。

扩展截图

screenshot

下载Js-Injection扩展crx文件

下载Js-Injection扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Javascript Injection Extension Tool for Chromium-based Web browsers

This Project is based on opensource 
visit https://github.com/AnOldStory/Js-Injection and make good extension together                    

扩展基本信息

名称 Js-Injection Js-Injection
ID mijnijeicfcodlijkmafknapfcilffni
官方URL https://chromewebstore.google.com/detail/js-injection/mijnijeicfcodlijkmafknapfcilffni
简介 Javascript Injection Extenstion Tool for Chromium-based Web browsers
文件大小 1.11 MB
安装次数 49
当前版本 2.0.2
更新时间 2020-04-02
上架时间 2020-03-27
开发者 AnOldStory
电子邮箱 [email protected]
付费类型 free
支持的语言 ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Js-Injection",
    "author": "AnOldStory",
    "version": "2.0.2",
    "description": "Javascript Injection Extenstion Tool for Chromium-based Web browsers",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "injection.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Js-Injection"
    },
    "icons": {
        "128": "icon128.png"
    },
    "options_page": "index.html",
    "permissions": [
        "storage",
        ""
    ]
}