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 - это расширение Chrome, разработанное Any Does, и его основная функция - "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file".
Снимки экрана расширения
Скачать файл CRX расширения Chrome Recorder
Скачайте файлы расширений 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", " |