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

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Chrome Recorder

قم بتنزيل ملفات الامتداد Chrome Recorder بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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/                    

معلومات أساسية عن التمديد

الاسم 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
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة http://snowcxt.github.io/chrome-recorder/
عنوان صفحة المساعدة 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'"
}