Quick Script

Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…

ما هو Quick Script؟

Quick Script هو إضافة Chrome تم تطويرها بواسطة Mark Wheeler، والميزة الرئيسية لها هي "Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…".

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

screenshot

تحميل ملف CRX للإضافة Quick Script

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

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

                        Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and repetitive automation tasks for web sites and web apps running in the chrome browser.

Note: 

This is an ongoing project more commands will be added in later versions. If you have suggestions for commands please provide feedback and I will try to include them.                    

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

الاسم Quick Script Quick Script
ID amjekilcdjfiobfjnglcndkdimkbpkaj
عنوان URL الرسمي https://chrome.google.com/webstore/detail/quick-script/amjekilcdjfiobfjnglcndkdimkbpkaj
الوصف Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…
حجم الملف 602 KB
عدد التثبيتات 171
النسخة الحالية 2.2
آخر تحديث 2013-09-17
تاريخ النشر 2013-09-17
تقييم 5.00/5 مجموع تقييمات 1
المطور Mark Wheeler
نوع الدفع free
اللغات المدعومة en,en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "scripts": [
            "js\/popup.js"
        ]
    },
    "manifest_version": 2,
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/contentscript.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Quick Script"
    },
    "default_locale": "en",
    "minimum_chrome_version": "14.0",
    "name": "Quick Script",
    "permissions": [
        "tabs",
        "tts",
        "contextMenus",
        "http:\/\/*\/*"
    ],
    "version": "2.2"
}