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 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 फ़ाइल डाउनलोड करें

crx प्रारूप में Quick Script एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
}