Chrome Recorder
Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file
O que é Chrome Recorder?
Chrome Recorder é uma extensão do Chrome desenvolvida por Any Does, e sua principal característica é "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Chrome Recorder
Baixe arquivos de extensão Chrome Recorder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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/
Informações Básicas da Extensão
Nome | |
ID | gjdedjgddbgejncikonfdikgmjakmnoi |
URL Oficial | https://chrome.google.com/webstore/detail/chrome-recorder/gjdedjgddbgejncikonfdikgmjakmnoi |
Descrição | Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file |
Tamanho do Arquivo | 277 KB |
Contagem de Instalações | 1,840 |
Versão Atual | 0.0.3.0 |
Última Atualização | 2015-05-31 |
Data de Publicação | 2015-05-31 |
Classificação | 2.45/5 Total de 11 Avaliações |
Desenvolvedor | Any Does |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | http://snowcxt.github.io/chrome-recorder/ |
URL da Página de Ajuda | http://snowcxt.github.io/chrome-recorder/ |
Idiomas Suportados | 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", " |