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",
" | |