ScriptAutoRunner

Injects to any Script into a Website. It can be autorun as well.

ما هو ScriptAutoRunner؟

ScriptAutoRunner هو إضافة Chrome تم تطويرها بواسطة nakajmg، والميزة الرئيسية لها هي "Injects to any Script into a Website. It can be autorun as well.".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ScriptAutoRunner

قم بتنزيل ملفات الامتداد ScriptAutoRunner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

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

                        More detail, see https://github.com/nakajmg/ScriptAutoRunner/README.md                    

معلومات أساسية عن التمديد

الاسم ScriptAutoRunner ScriptAutoRunner
ID gpgjofmpmjjopcogjgdldidobhmjmdbm
عنوان URL الرسمي https://chromewebstore.google.com/detail/scriptautorunner/gpgjofmpmjjopcogjgdldidobhmjmdbm
الوصف Injects to any Script into a Website. It can be autorun as well.
حجم الملف 130 KB
عدد التثبيتات 10,000
النسخة الحالية 0.1.0
آخر تحديث 2015-09-23
تاريخ النشر 2015-09-23
تقييم 4.87/5 مجموع تقييمات 31
المطور nakajmg
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScriptAutoRunner",
    "description": "Injects to any Script into a Website. It can be autorun as well.",
    "version": "0.1.0",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "img\/icon.png",
        "48": "img\/icon.png",
        "128": "img\/icon.png"
    },
    "options_page": "options.html",
    "content_security_policy": "allow-scripts; script-src 'self' 'unsafe-eval'; object-src 'self'",
    "browser_action": {
        "default_icon": "img\/icon.png",
        "default_title": "ScriptAutoRunner"
    },
    "permissions": [
        "tabs",
        ""
    ]
}