Code Injector

Extension for JS & style injecting into the specified website.

什麼是Code Injector?

Code Injector是由martin.suba01開發的Chrome擴展程式,該擴展的主要功能是“Extension for JS & style injecting into the specified website.”。

擴展截圖

screenshot

下載Code Injector擴展crx文件

下載Code Injector擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Tool for injecting custom JavaScript and CSS into website specified by domain. Uses Chrome storage sync API to store your scripts. You can create and edit your scripts in the tab UI of the extension which opens on extension icon click. There's jQuery support for JavaScript codes.

Features:
✔️ injects JS and CSS code into website specified by domain match
✔️ supports jQuery v3.4.1
✔️ tab UI for script management
✔️ simple code editor with JS/CSS text highlight                    

擴展基本資訊

名稱 Code Injector Code Injector
ID mmngbmmjfjannofkffhoindghfbhcool
官方網址 https://chromewebstore.google.com/detail/code-injector/mmngbmmjfjannofkffhoindghfbhcool
簡介 Extension for JS & style injecting into the specified website.
檔案大小 110 KB
安裝次數 1,016
目前版本 0.0.1
更新時間 2020-02-06
上架時間 2020-02-06
評分 3.30/5 共 10 次評分
開發者 martin.suba01
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Code Injector",
    "description": "Extension for JS & style injecting into the specified website.",
    "version": "0.0.1",
    "author": "Martin Suba",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "browser_action": {
        "default_icon": {
            "64": "icons\/icon64.png"
        },
        "default_title": "Open the Code Injector in tab"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "*:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_idle",
            "js": [
                "content-script.js"
            ],
            "all_frames": false
        }
    ],
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "64": "icons\/icon64.png",
        "128": "icons\/icon128.png"
    }
}