FeatherTest - Website Automated Tests

Fast and easy Website Automated Testing and Macros for Google Chrome

Τι είναι το FeatherTest - Website Automated Tests;

Το FeatherTest - Website Automated Tests είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://xaviesteve.com, και η κύρια λειτουργία του είναι "Fast and easy Website Automated Testing and Macros for Google Chrome".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης FeatherTest - Website Automated Tests

Λήψη αρχείων επέκτασης FeatherTest - Website Automated Tests σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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                    

Βασικές Πληροφορίες Επέκτασης

Όνομα FeatherTest - Website Automated Tests FeatherTest - Website Automated Tests
ID cpconfnklmionglnfabhmpckegbjdbfe
Επίσημο URL https://chromewebstore.google.com/detail/feathertest-website-autom/cpconfnklmionglnfabhmpckegbjdbfe
Περιγραφή Fast and easy Website Automated Testing and Macros for Google Chrome
Μέγεθος Αρχείου 43.4 KB
Αριθμός Εγκαταστάσεων 280
Τρέχουσα Έκδοση 1.0.6
Τελευταία Ενημέρωση 2015-12-14
Ημερομηνία Δημοσίευσης 2015-12-14
Αξιολόγηση 3.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής https://xaviesteve.com
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://xaviesteve.com/5302/feathertest-automated-website-testing-extension-google-chrome
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/luckyshot/feathertest/issues
URL της Σελίδας Πολιτικής Απορρήτου https://xaviesteve.com/legal
Υποστηριζόμενες Γλώσσες 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"
}