QAide Test Step Recorder

QAide test step recorder.

Τι είναι το QAide Test Step Recorder;

Το QAide Test Step Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://qaide.co.uk, και η κύρια λειτουργία του είναι "QAide test step recorder.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης QAide Test Step Recorder

Λήψη αρχείων επέκτασης QAide Test Step Recorder σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

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

                        QAide Test Step Recorder provides a way for you to trace your steps on websites. This tool will allow you to retrace your steps and if you work with a development team you can provide them with the JSON file making it easier to know what exactly happened.

We do not store any data, the steps are stored in your browser and you can detail any of the steps you wish. This is to ensure your data is secure between you and your browser.

Journey: 

When you have been on a website and clicked around, maybe filled in some forms you can open the extension to see what's being recorded.

To see the dashboard you have to open the Pop Up and if you have steps available you can click the Vew All Step Details link in the top-right.

Once the dashboard is displayed you will see more details around the steps you've taken divided by the domain and you can collapse/expand the domain sections to make it easier to read.
For each step you can copy the JSON to your clipboard or in the top-right corner you can export all steps to a JSON file if you want to use the data elsewhere.                    

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

Όνομα QAide Test Step Recorder QAide Test Step Recorder
ID jbdogiflkjhhfeehchmeekahhmeakcll
Επίσημο URL https://chrome.google.com/webstore/detail/jbdogiflkjhhfeehchmeekahhmeakcll
Περιγραφή QAide test step recorder.
Μέγεθος Αρχείου 207 KB
Αριθμός Εγκαταστάσεων 125
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2021-01-16
Ημερομηνία Δημοσίευσης 2020-09-04
Αξιολόγηση 4.75/5 Συνολικά 4 Αξιολογήσεις
Προγραμματιστής https://qaide.co.uk
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://qaide.co.uk/
Υποστηριζόμενες Γλώσσες en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.2",
    "name": "QAide Test Step Recorder",
    "description": "QAide test step recorder.",
    "icons": {
        "128": "resources\/img\/128x128.png",
        "48": "resources\/img\/48x48.png",
        "16": "resources\/img\/16x16.png"
    },
    "browser_action": {
        "default_icon": "resources\/img\/16x16.png",
        "default_popup": "popup.html",
        "default_title": "QAide Test Steps"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "resources\/contentScript.js"
            ],
            "exclude_matches": [
                "*:\/\/linkedin.com\/*",
                "*:\/\/mail.google.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/trello.com\/*",
                "*:\/\/outlook.office365.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "content_security_policy": "script-src 'self' https:\/\/use.fontawesome.com\/releases\/v5.15.1\/css\/all.css; object-src 'self'"
}