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
官方URL 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
        }
    ]
}