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 là gì?
Grafana k6 Browser Recorder là một tiện ích mở rộng Chrome được phát triển bởi Grafana Labs, và tính năng chính của nó là "Record k6 scripts right from the browser with the ability to automatically upload them to Grafana Cloud.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Grafana k6 Browser Recorder
Tải xuống các tệp mở rộng Grafana k6 Browser Recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Grafana k6 Browser Recorder |
ID | fbanjfonbcedhifbgikmjelkkckhhidl |
URL Chính Thức | https://chromewebstore.google.com/detail/grafana-k6-browser-record/fbanjfonbcedhifbgikmjelkkckhhidl |
Mô tả | Record k6 scripts right from the browser with the ability to automatically upload them to Grafana Cloud. |
Kích Thước Tệp | 921 KB |
Số Lần Cài Đặt | 3,727 |
Phiên Bản Hiện Tại | 1.0.1 |
Cập Nhật Lần Cuối | 2023-07-04 |
Ngày Phát Hành | 2023-06-20 |
Đánh Giá | 4.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Grafana Labs |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://grafana.com/products/cloud/k6/ |
URL Trang Trợ Giúp | https://grafana.com/products/cloud/k6/ |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |