Quick Script
Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…
Vad är Quick Script?
Quick Script är en Chrome-tillägg utvecklad av Mark Wheeler, och dess huvudfunktion är "Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…".
Tilläggsskärmbilder
Ladda ner Quick Script-förlängningens CRX-fil
Ladda ner Quick Script-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | |
ID | amjekilcdjfiobfjnglcndkdimkbpkaj |
Officiell webbadress | https://chrome.google.com/webstore/detail/quick-script/amjekilcdjfiobfjnglcndkdimkbpkaj |
Beskrivning | Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and… |
Filstorlek | 602 KB |
Antal Installationer | 171 |
Aktuell Version | 2.2 |
Senast Uppdaterad | 2013-09-17 |
Publiceringsdatum | 2013-09-17 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | Mark Wheeler |
Betalningssätt | free |
Stödda Språk | 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" } |