Inject Code

Inject your own code into any webpage

什麼是Inject Code?

Inject Code是由Yehuda Moskowitz開發的Chrome擴展程式,該擴展的主要功能是“Inject your own code into any webpage”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Inject Code擴展crx文件

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

擴展使用說明

                        Write JS/JSX/CSS snippets that can be executed by click of a button.

Features:
*    Custom code or link to an external library
*    Filter on specific URL's
*    Auto run
*    Filter auto run on specific URL's
*    Simple interface
*    Write/Update in separate tab while testing on web page
*    Toggle horizontal/vertical split view in edit mode
*    Toggle full screen in edit mode
*    Choose whether to run in all frames                    

擴展基本資訊

名稱 Inject Code Inject Code
ID jpbbdgndcngomphbmplabjginoihkdph
官方網址 https://chromewebstore.google.com/detail/inject-code/jpbbdgndcngomphbmplabjginoihkdph
簡介 Inject your own code into any webpage
檔案大小 4.68 MB
安裝次數 1,066
目前版本 1.0.4.7
更新時間 2024-01-04
上架時間 2018-12-18
評分 4.89/5 共 9 次評分
開發者 Yehuda Moskowitz
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Inject Code",
    "manifest_version": 2,
    "name": "Inject Code",
    "version": "1.0.4.7",
    "description": "Inject your own code into any webpage",
    "browser_action": {
        "default_popup": "index.html",
        "default_icon": "images\/inject.png",
        "default_title": "Inject Code Snippets"
    },
    "options_page": "index.html?page=options",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_security_policy": "script-src 'self' 'sha256-GgRxrVOKNdB4LrRsVPDSbzvfdV4UqglmviH9GoBJ5jk='; object-src 'self'",
    "web_accessible_resources": [],
    "permissions": [
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "babel.js",
                "content.js"
            ],
            "all_frames": true
        }
    ]
}