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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
}