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開發的Chrome擴展程式,該擴展的主要功能是“Record k6 scripts right from the browser with the ability to automatically upload them to Grafana Cloud.”。

擴展截圖

screenshot
screenshot
screenshot

下載Grafana k6 Browser Recorder擴展crx文件

下載Grafana k6 Browser Recorder擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
    }
}