Quick Script
Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…
Wat is Quick Script?
Quick Script is een Chrome-extensie ontwikkeld door Mark Wheeler, en de belangrijkste functie is "Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…".
Extensie Screenshots
Download het CRX-bestand van de extensie Quick Script
Download Quick Script-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | amjekilcdjfiobfjnglcndkdimkbpkaj |
Officiële URL | https://chrome.google.com/webstore/detail/quick-script/amjekilcdjfiobfjnglcndkdimkbpkaj |
Beschrijving | Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and… |
Bestandsgrootte | 602 KB |
Aantal Installaties | 171 |
Huidige Versie | 2.2 |
Laatst Bijgewerkt | 2013-09-17 |
Publicatiedatum | 2013-09-17 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Mark Wheeler |
Betalingswijze | free |
Ondersteunde Talen | 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" } |