Grafana k6 Browser Recorder

Record k6 scripts right from the browser with the ability to automatically upload them to Grafana Cloud.

Grafana k6 Browser Recorder क्या है?

Grafana k6 Browser Recorder Grafana Labs द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Record k6 scripts right from the browser with the ability to automatically upload them to Grafana Cloud."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Grafana k6 Browser Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        The extension records all of the HTTP(S) requests that your browser makes, creates a test script, and allows you to upload the test to your Grafana Cloud account, where a load test can be executed. 

Once uploaded to your Grafana Cloud account, you can edit the test script using the powerful high-level language JavaScript. The script editor has syntax highlighting and a linter is run on save to help you avoid syntax errors and other common scripting mistakes.                    

एक्सटेंशन की मूल जानकारी

नाम Grafana k6 Browser Recorder Grafana k6 Browser Recorder
ID fbanjfonbcedhifbgikmjelkkckhhidl
आधिकारिक URL https://chromewebstore.google.com/detail/grafana-k6-browser-record/fbanjfonbcedhifbgikmjelkkckhhidl
विवरण Record k6 scripts right from the browser with the ability to automatically upload them to Grafana Cloud.
फ़ाइल का आकार 921 KB
स्थापना संख्या 3,727
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2023-07-04
प्रकाशन तिथि 2023-06-20
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर Grafana Labs
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://grafana.com/products/cloud/k6/
सहायता पृष्ठ URL https://grafana.com/products/cloud/k6/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Grafana k6 Browser Recorder",
    "version": "1.0.1",
    "manifest_version": 3,
    "description": "Record k6 scripts right from the browser with the ability to automatically upload them to Grafana Cloud.",
    "homepage_url": "https:\/\/grafana.com\/products\/cloud\/k6\/",
    "author": "Grafana Labs",
    "minimum_chrome_version": "109",
    "permissions": [
        "debugger",
        "browsingData",
        "storage",
        "tabs",
        "unlimitedStorage",
        "webRequest",
        "webNavigation",
        "downloads",
        "offscreen",
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "32": "images\/[email protected]",
        "48": "images\/[email protected]",
        "64": "images\/[email protected]",
        "128": "images\/[email protected]"
    },
    "action": {
        "default_icon": {
            "32": "images\/[email protected]",
            "48": "images\/[email protected]"
        },
        "default_title": "Grafana k6 Browser Recorder",
        "default_popup": "popup.html"
    },
    "commands": {
        "toggle-recording": {
            "suggested_key": {
                "default": "Ctrl+E"
            },
            "description": "Toggle start stop recording",
            "global": true
        }
    },
    "externally_connectable": {
        "matches": [
            "*:\/\/*.grafana.net\/*",
            "*:\/\/localhost\/*"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.grafana.net\/*",
                "*:\/\/localhost\/*"
            ],
            "js": [
                "inject-extension-meta.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/grafana.com\/orgs\/*"
            ],
            "js": [
                "extension-config-alert.js"
            ],
            "run_at": "document_end"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    }
}