Cloud Inject

Inject JS/CSS from any url, into any page

Cloud Injectคืออะไร?

Cloud Inject เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Aloong Deng และคุณลักษณะหลักของมันคือ "Inject JS/CSS from any url, into any page"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Cloud Inject

ดาวน์โหลดไฟล์ส่วนขยาย 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"
}