Chrome Recorder
Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file
Qu'est-ce que Chrome Recorder ?
Chrome Recorder est une extension Chrome développée par Any Does, et sa fonction principale est "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Chrome Recorder
Téléchargez les fichiers d'extension Chrome Recorder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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/
Informations de Base sur l'Extension
Nom | |
ID | gjdedjgddbgejncikonfdikgmjakmnoi |
URL Officiel | https://chrome.google.com/webstore/detail/chrome-recorder/gjdedjgddbgejncikonfdikgmjakmnoi |
Description | Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file |
Taille du Fichier | 277 KB |
Nombre d'Installations | 1,840 |
Version Actuelle | 0.0.3.0 |
Dernière Mise à Jour | 2015-05-31 |
Date de Publication | 2015-05-31 |
Évaluation | 2.45/5 Total 11 Évaluations |
Développeur | Any Does |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://snowcxt.github.io/chrome-recorder/ |
URL de la Page d'Aide | http://snowcxt.github.io/chrome-recorder/ |
Langues Prises en Charge | 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", " |