PlaybookUX - Screen recorder

A screen recorder app by PlaybookUX

PlaybookUX - Screen recorder là gì?

PlaybookUX - Screen recorder là một tiện ích mở rộng Chrome được phát triển bởi PlaybookUX, và tính năng chính của nó là "A screen recorder app by PlaybookUX".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng PlaybookUX - Screen recorder

Tải xuống các tệp mở rộng PlaybookUX - Screen recorder dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The PlaybookUX chrome extension allows you test websites so you can provide companies with feedback. In order take a test with the PlaybookUX chrome extension, you must first have a link to the study. You will be given task instructions and asked to verbally provide feedback while interacting with the website.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PlaybookUX - Screen recorder PlaybookUX - Screen recorder
ID hkoaocmcjchlpebblflldidnhanndoaf
URL Chính Thức https://chromewebstore.google.com/detail/playbookux-screen-recorde/hkoaocmcjchlpebblflldidnhanndoaf
Mô tả A screen recorder app by PlaybookUX
Kích Thước Tệp 5.3 MB
Số Lần Cài Đặt 82
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-01-30
Ngày Phát Hành 2022-12-07
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển PlaybookUX
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.playbookux.com/tester
URL Trang Trợ Giúp http://help.playbookux.com/en/articles/6795089-using-the-chrome-extension
URL Trang Chính Sách Bảo Mật https://www.playbookux.com/privacy-policy
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "PlaybookUX",
    "name": "PlaybookUX - Screen recorder",
    "version": "1.0.4",
    "manifest_version": 3,
    "description": "A screen recorder app by PlaybookUX",
    "permissions": [
        "storage",
        "activeTab",
        "tabs"
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/*.playbookux.com\/*",
            "http:\/\/localhost:8080\/*",
            "http:\/\/localhost:8081\/*"
        ]
    },
    "action": {
        "default_popup": "index.html",
        "default_title": "Open the popup"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ic_finish.png"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "*:\/\/*\/*"
            ]
        }
    ]
}