Loadster Recorder

Create test scripts to run in Loadster and Speedway.

Τι είναι το Loadster Recorder;

Το Loadster Recorder είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://loadster.app, και η κύρια λειτουργία του είναι "Create test scripts to run in Loadster and Speedway.".

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

screenshot

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

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

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

                        The Loadster Recorder is a helper extension that enables you to easily record test scripts for Loadster and Speedway from your Chrome browser.

Loadster is a load testing platform for websites, web applications, and APIs. Load testing is a way to ensure that the websites and apps you are building remain fast and responsive under heavy load. With Loadster, you can create test scripts simulating real user behavior, and then play them back with hundreds or thousands of concurrent simulated users.

Speedway is an API and site monitoring service that plays back realistic scripts to hit your site at regular intervals 24x7x365, to make sure it is fast and functional. Site monitoring makes the job of maintaining a high availability web application much easier, and ensures you'll be the first to know if anything breaks.

This Chrome extension works by observing your browsing activity (only when recording is enabled), and sharing it with the Loadster or Speedway script editor for creating a script.

This extension can be disabled when you're not recording scripts.

To learn more, check out https://loadster.app and https://speedway.app.                    

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

Όνομα Loadster Recorder Loadster Recorder
ID bkhfnmahbfjemfpgehoolkhhdhbidaan
Επίσημο URL https://chromewebstore.google.com/detail/loadster-recorder/bkhfnmahbfjemfpgehoolkhhdhbidaan
Περιγραφή Create test scripts to run in Loadster and Speedway.
Μέγεθος Αρχείου 138 KB
Αριθμός Εγκαταστάσεων 7,039
Τρέχουσα Έκδοση 23
Τελευταία Ενημέρωση 2023-05-15
Ημερομηνία Δημοσίευσης 2020-06-23
Αξιολόγηση 4.83/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής https://loadster.app
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
URL της Σελίδας Πολιτικής Απορρήτου https://loadster.app/legal
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Loadster Recorder",
    "description": "Create test scripts to run in Loadster and Speedway.",
    "version": "23",
    "icons": {
        "16": "images\/icon-16x16.png",
        "32": "images\/icon-32x32.png",
        "48": "images\/icon-48x48.png",
        "128": "images\/icon-128x128.png",
        "256": "images\/icon-256x256.png"
    },
    "action": {
        "default_icon": "images\/icon-32x32.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "js\/service-worker.js"
    },
    "minimum_chrome_version": "92",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/localhost\/*",
                "https:\/\/loadster.app\/*",
                "https:\/\/speedway.app\/*"
            ],
            "js": [
                "js\/browser-polyfill.min.js",
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "storage",
        "scripting",
        "webRequest",
        "webNavigation"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ]
}