Chrome Recorder
Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file
Hvad er Chrome Recorder?
Chrome Recorder er en Chrome-udvidelse udviklet af Any Does, og dens hovedfunktion er "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file".
Udvidelsesskærmbilleder
Download Chrome Recorder-udvidelses-CRX-fil
Download Chrome Recorder-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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/ Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | gjdedjgddbgejncikonfdikgmjakmnoi |
| Officiel URL | https://chrome.google.com/webstore/detail/chrome-recorder/gjdedjgddbgejncikonfdikgmjakmnoi |
| Beskrivelse | Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file |
| Filstørrelse | 277 KB |
| Antal Installationer | 1,840 |
| Nuværende Version | 0.0.3.0 |
| Senest Opdateret | 2015-05-31 |
| Udgivelsesdato | 2015-05-31 |
| Bedømmelse | 2.45/5 Samlet 11 Bedømmelser |
| Udvikler | Any Does |
| [email protected] | |
| Betalingsmetode | free |
| Udvidelseswebsted | http://snowcxt.github.io/chrome-recorder/ |
| Hjælpeside-URL | http://snowcxt.github.io/chrome-recorder/ |
| Understøttede Sprog | 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",
" | |