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 |
| 官方網址 | 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",
" | |