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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Chrome Recorder एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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", " |