Code Injector

Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.

什么是Code Injector?

Code Injector是由Melwyn Pawar开发的Chrome扩展程序,该扩展的主要功能是“Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.”。

扩展截图

screenshot
screenshot

下载Code Injector扩展crx文件

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

扩展使用说明

                        Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages to make design and developmental decisions quickly.                    

扩展基本信息

名称 Code Injector Code Injector
ID ffpbejkllpoglbeeabibelceofidjfhk
官方URL https://chrome.google.com/webstore/detail/code-injector/ffpbejkllpoglbeeabibelceofidjfhk
简介 Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.
文件大小 293 KB
安装次数 121
当前版本 1.4
更新时间 2017-12-21
上架时间 2017-12-21
评分 1.00/5 共1次评分
开发者 Melwyn Pawar
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.example.com\/*"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "allLibs.js"
            ],
            "matches": [
                ""
            ],
            "css": [
                "inject.css"
            ]
        }
    ],
    "description": "Inject code snippets, scripts, HTML, CSS into selected DOM elements and see them render dynamically onto web pages.",
    "icons": {
        "128": "l1.png",
        "16": "icon.png",
        "48": "l2.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Script Injector"
    },
    "web_accessible_resources": [
        "images\/pagebreak.png",
        "images\/pagebreak_alone.png"
    ],
    "manifest_version": 2,
    "name": "Code Injector",
    "permissions": [
        "tabs",
        "",
        "background"
    ],
    "version": "1.4"
}