Chrome Recorder
Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file
什么是Chrome Recorder?
Chrome Recorder是由Any Does开发的Chrome扩展程序,该扩展的主要功能是“Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file”。
扩展截图
下载Chrome Recorder扩展crx文件
下载Chrome Recorder扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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/ 扩展基本信息
| 名称 | |
| ID | gjdedjgddbgejncikonfdikgmjakmnoi |
| 官方URL | https://chrome.google.com/webstore/detail/chrome-recorder/gjdedjgddbgejncikonfdikgmjakmnoi |
| 简介 | Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file |
| 文件大小 | 277 KB |
| 安装次数 | 1,840 |
| 当前版本 | 0.0.3.0 |
| 更新时间 | 2015-05-31 |
| 上架时间 | 2015-05-31 |
| 评分 | 2.45/5 共11次评分 |
| 开发者 | Any Does |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | http://snowcxt.github.io/chrome-recorder/ |
| 帮助页面URL | http://snowcxt.github.io/chrome-recorder/ |
| 支持的语言 | 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",
" | |