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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}