Cloud Inject

Inject JS/CSS from any url, into any page

什么是Cloud Inject?

Cloud Inject是由Aloong Deng开发的Chrome扩展程序,该扩展的主要功能是“Inject JS/CSS from any url, into any page”。

扩展截图

screenshot

下载Cloud Inject扩展crx文件

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

扩展使用说明

                        You can inject JS/CSS files from any url, into any page, while jQuery is automatically injected.                    

扩展基本信息

名称 Cloud Inject Cloud Inject
ID hoenhdmdbiehplejoheeklmflmcnidjp
官方URL https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp
简介 Inject JS/CSS from any url, into any page
文件大小 51.03 KB
安装次数 54
当前版本 1.5
更新时间 2017-06-06
上架时间 2017-06-06
评分 3.67/5 共3次评分
开发者 Aloong Deng
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Cloud Inject",
    "version": "1.5",
    "manifest_version": 2,
    "description": "Inject JS\/CSS from any url, into any page",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "myscript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "jquery.js",
        "inject_script.js",
        "inject_css.css"
    ],
    "page_action": {
        "default_icon": "icon.png",
        "default_title": "Cloud Inject",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/chrome.google.com\/webstore\/detail\/cloud-inject\/hoenhdmdbiehplejoheeklmflmcnidjp"
}