Cloud Inject

Inject JS/CSS from any url, into any page

Apa itu Cloud Inject?

Cloud Inject adalah ekstensi Chrome yang dikembangkan oleh Aloong Deng, dan fitur utamanya adalah "Inject JS/CSS from any url, into any page".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Cloud Inject

Unduh file ekstensi Cloud Inject dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Cloud Inject Cloud Inject
ID hoenhdmdbiehplejoheeklmflmcnidjp
URL Resmi https://chrome.google.com/webstore/detail/cloud-inject/hoenhdmdbiehplejoheeklmflmcnidjp
Deskripsi Inject JS/CSS from any url, into any page
Ukuran File 51.03 KB
Jumlah Instalasi 54
Versi Saat Ini 1.5
Terakhir Diperbarui 2017-06-06
Tanggal Publikasi 2017-06-06
Penilaian 3.67/5 Total 3 Penilaian
Pengembang Aloong Deng
Tipe Pembayaran free
Bahasa yang Didukung 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"
}