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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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