Quick Script

Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…

Was ist Quick Script?

Quick Script ist eine Chrome-Erweiterung, die von Mark Wheeler entwickelt wurde, und ihr Hauptmerkmal ist "Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…".

Erweiterungsscreenshots

screenshot

Quick Script-Erweiterungs-CRX-Datei herunterladen

Laden Sie Quick Script-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Quick Script Quick Script
ID amjekilcdjfiobfjnglcndkdimkbpkaj
Offizielle URL https://chrome.google.com/webstore/detail/quick-script/amjekilcdjfiobfjnglcndkdimkbpkaj
Beschreibung Quick Script is a google chrome extension created for web developers and software testers to enable them to author test scripts and…
Dateigröße 602 KB
Installationsanzahl 171
Aktuelle Version 2.2
Letztes Update 2013-09-17
Veröffentlichungsdatum 2013-09-17
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Mark Wheeler
Zahlungsart free
Unterstützte Sprachen 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"
}