Content Script

Simple extension that allows running pre-defined JavaScript at any page. Developed by Simo Erkinheimo.

什么是Content Script?

Content Script是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Simple extension that allows running pre-defined JavaScript at any page. Developed by Simo Erkinheimo.”。

扩展截图

screenshot

下载Content Script扩展crx文件

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

扩展使用说明

                                            

扩展基本信息

名称 Content Script Content Script
ID fncbcbakeiaopklkfknhpckcoipoaefo
官方URL https://chromewebstore.google.com/detail/content-script/fncbcbakeiaopklkfknhpckcoipoaefo
简介 Simple extension that allows running pre-defined JavaScript at any page. Developed by Simo Erkinheimo.
文件大小 22.97 KB
安装次数 173
当前版本 0.0.1
更新时间 2016-07-19
上架时间 2016-07-19
评分 5.00/5 共3次评分
开发者 Unknown
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Content Script",
    "version": "0.0.1",
    "icons": {
        "128": "icon128.png"
    },
    "description": "Simple extension that allows running pre-defined JavaScript at any page. Developed by Simo Erkinheimo.",
    "author": "Simo Erkinheimo",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "manifest_version": 2
}