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によって開発されたChromeの拡張機能で、その主な機能は「Record the user interactions, take screenshots and replay the actions. Also can mock XHR calls with a HAR file」です。

拡張機能のスクリーンショット

screenshot
screenshot

Chrome Recorder拡張機能のCRXファイルをダウンロード

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/                    

拡張機能の基本情報

名前 Chrome Recorder 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
Eメール [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",
        ""
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}