Chrome Recorder
Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file
What is Chrome Recorder?
Chrome Recorder is a Chrome extension developed by Any Does, and its main feature is "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file".
Extension Screenshots
Download Chrome Recorder Extension CRX File
Download Chrome Recorder extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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/
Extension Basic Information
Name | |
ID | gjdedjgddbgejncikonfdikgmjakmnoi |
Official URL | https://chrome.google.com/webstore/detail/chrome-recorder/gjdedjgddbgejncikonfdikgmjakmnoi |
Description | Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file |
File Size | 277 KB |
Installation Count | 1,840 |
Current Version | 0.0.3.0 |
Last Updated | 2015-05-31 |
Publish Date | 2015-05-31 |
Rating | 2.45/5 Total 11 Ratings |
Developer | Any Does |
[email protected] | |
Payment Type | free |
Extension Website | http://snowcxt.github.io/chrome-recorder/ |
Help Page URL | http://snowcxt.github.io/chrome-recorder/ |
Supported Languages | 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", " |