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…”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | amjekilcdjfiobfjnglcndkdimkbpkaj |
官方網址 | 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" } |