Chrome Recorder
Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file
Chrome Recorder là gì?
Chrome Recorder là một tiện ích mở rộng Chrome được phát triển bởi Any Does, và tính năng chính của nó là "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file".
Ả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 Chrome Recorder
Tải xuống các tệp mở rộng Chrome 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
Chrome Recorder is a chrome extension that can record the user interactions, take screenshots and replay the actions. Chrome Recorder also can mock XHR calls with a HAR file For more information, please go to http://snowcxt.github.io/chrome-recorder/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | gjdedjgddbgejncikonfdikgmjakmnoi |
URL Chính Thức | https://chrome.google.com/webstore/detail/chrome-recorder/gjdedjgddbgejncikonfdikgmjakmnoi |
Mô tả | Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file |
Kích Thước Tệp | 277 KB |
Số Lần Cài Đặt | 1,840 |
Phiên Bản Hiện Tại | 0.0.3.0 |
Cập Nhật Lần Cuối | 2015-05-31 |
Ngày Phát Hành | 2015-05-31 |
Đánh Giá | 2.45/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Any Does |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | http://snowcxt.github.io/chrome-recorder/ |
URL Trang Trợ Giúp | http://snowcxt.github.io/chrome-recorder/ |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Chrome Recorder", "description": "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file", "version": "0.0.3.0", "manifest_version": 2, "icons": { "16": "icon.png", "128": "icon.png" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/front.js" ], "all_frames": true, "run_at": "document_end" } ], "commands": { "screenshot": { "suggested_key": { "default": "Alt+Shift+C" }, "description": "Capture screenshot" }, "cursor": { "suggested_key": { "default": "Alt+Shift+V" }, "description": "View\/hide cursor position" }, "wait": { "suggested_key": { "default": "Alt+Shift+W" }, "description": "Get wait for element" } }, "web_accessible_resources": [ "js\/front.js.map", "js\/front.ts" ], "browser_action": { "default_icon": { "19": "icon.png", "38": "icon.png" }, "default_title": "Chrome Recorder" }, "permissions": [ "tabs", "webRequest", "webRequestBlocking", " |