Cloud Inject

Inject JS/CSS from any url, into any page

Cloud Inject là gì?

Cloud Inject là một tiện ích mở rộng Chrome được phát triển bởi Aloong Deng, và tính năng chính của nó là "Inject JS/CSS from any url, into any page".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Cloud Inject

Tải xuống các tệp mở rộng Cloud Inject dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Cloud Inject Cloud Inject
ID hoenhdmdbiehplejoheeklmflmcnidjp
URL Chính Thức https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp
Mô tả Inject JS/CSS from any url, into any page
Kích Thước Tệp 51.03 KB
Số Lần Cài Đặt 54
Phiên Bản Hiện Tại 1.5
Cập Nhật Lần Cuối 2017-06-06
Ngày Phát Hành 2017-06-06
Đánh Giá 3.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Aloong Deng
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
}