FeatherTest - Website Automated Tests

Fast and easy Website Automated Testing and Macros for Google Chrome

Qu'est-ce que FeatherTest - Website Automated Tests ?

FeatherTest - Website Automated Tests est une extension Chrome développée par https://xaviesteve.com, et sa fonction principale est "Fast and easy Website Automated Testing and Macros for Google Chrome".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension FeatherTest - Website Automated Tests

Téléchargez les fichiers d'extension FeatherTest - Website Automated Tests au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        FeatherTest is a free, open source Google Chrome extension to serve as a quick way to build simple tests and automate processes, you can also use it to register accounts or fill forms with data. It is really flexible, you can use any JavaScript and jQuery code to write your tests, doesn't need any server setup and once the test is written anyone in the team can run them from their browsers.

Documentation and examples: http://xaviesteve.com/5302/feathertest-automated-website-testing-extension-google-chrome

Source code: https://github.com/luckyshot/feathertest                    

Informations de Base sur l'Extension

Nom FeatherTest - Website Automated Tests FeatherTest - Website Automated Tests
ID cpconfnklmionglnfabhmpckegbjdbfe
URL Officiel https://chromewebstore.google.com/detail/feathertest-website-autom/cpconfnklmionglnfabhmpckegbjdbfe
Description Fast and easy Website Automated Testing and Macros for Google Chrome
Taille du Fichier 43.4 KB
Nombre d'Installations 280
Version Actuelle 1.0.6
Dernière Mise à Jour 2015-12-14
Date de Publication 2015-12-14
Évaluation 3.80/5 Total 5 Évaluations
Développeur https://xaviesteve.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension http://xaviesteve.com/5302/feathertest-automated-website-testing-extension-google-chrome
URL de la Page d'Aide https://github.com/luckyshot/feathertest/issues
URL de la Page de Politique de Confidentialité https://xaviesteve.com/legal
Langues Prises en Charge en
manifest.json
{
    "version": "1.0.6",
    "short_name": "FeatherTest",
    "name": "FeatherTest - Website Automated Tests",
    "description": "Fast and easy Website Automated Testing and Macros for Google Chrome",
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery.js",
                "script.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon24.png",
        "default_popup": "popup.html"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google.com https:\/\/apis.google.com https:\/\/ssl.google-analytics.com https:\/\/ajax.googleapis.com; object-src https:\/\/www.google.com 'self'",
    "icons": {
        "16": "icon16.png",
        "24": "icon24.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "minimum_chrome_version": "39",
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx"
}