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开发的Chrome扩展程序,该扩展的主要功能是“Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…”。

扩展截图

screenshot

下载Quick Script扩展crx文件

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