Cloud Inject

Inject JS/CSS from any url, into any page

What is Cloud Inject?

Cloud Inject is a Chrome extension developed by Aloong Deng, and its main feature is "Inject JS/CSS from any url, into any page".

Extension Screenshots

screenshot

Download Cloud Inject Extension CRX File

Download Cloud Inject extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name Cloud Inject Cloud Inject
ID hoenhdmdbiehplejoheeklmflmcnidjp
Official URL https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp
Description Inject JS/CSS from any url, into any page
File Size 51.03 KB
Installation Count 54
Current Version 1.5
Last Updated 2017-06-06
Publish Date 2017-06-06
Rating 3.67/5 Total 3 Ratings
Developer Aloong Deng
Payment Type free
Supported Languages 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"
}