Chrome Recorder

Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file

Was ist Chrome Recorder?

Chrome Recorder ist eine Chrome-Erweiterung, die von Any Does entwickelt wurde, und ihr Hauptmerkmal ist "Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file".

Erweiterungsscreenshots

screenshot
screenshot

Chrome Recorder-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chrome Recorder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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/                    

Grundlegende Informationen zur Erweiterung

Name Chrome Recorder Chrome Recorder
ID gjdedjgddbgejncikonfdikgmjakmnoi
Offizielle URL https://chrome.google.com/webstore/detail/chrome-recorder/gjdedjgddbgejncikonfdikgmjakmnoi
Beschreibung Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file
Dateigröße 277 KB
Installationsanzahl 1,840
Aktuelle Version 0.0.3.0
Letztes Update 2015-05-31
Veröffentlichungsdatum 2015-05-31
Bewertung 2.45/5 Insgesamt 11 Bewertungen
Entwickler Any Does
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite http://snowcxt.github.io/chrome-recorder/
Hilfeseite URL http://snowcxt.github.io/chrome-recorder/
Unterstützte Sprachen 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",
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}