run-script

run script on page load

ما هو run-script؟

run-script هو إضافة Chrome تم تطويرها بواسطة zhangsanshi5566، والميزة الرئيسية لها هي "run script on page load".

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

screenshot

تحميل ملف CRX للإضافة run-script

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

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

                        We need run script for test  or  other things. If we don't want to  open console tab every times, you can choose this  tool.                    

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

الاسم run-script run-script
ID gddnebgjhlhediiojefadmljmnjfomak
عنوان URL الرسمي https://chrome.google.com/webstore/detail/run-script/gddnebgjhlhediiojefadmljmnjfomak
الوصف run script on page load
حجم الملف 728 KB
عدد التثبيتات 17
النسخة الحالية 0.0.2
آخر تحديث 2017-02-26
تاريخ النشر 2017-02-26
المطور zhangsanshi5566
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "run-script",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "run script on page load",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "activeTab",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "debugger",
        "notifications",
        "pageCapture",
        "topSites",
        "storage",
        "unlimitedStorage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_start",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "run script",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "images\/icon-48.png"
    ]
}