PlaybookUX - Screen recorder

A screen recorder app by PlaybookUX

PlaybookUX - Screen recorderคืออะไร?

PlaybookUX - Screen recorder เป็นส่วนขยายของ Chrome ที่พัฒนาโดย PlaybookUX และคุณลักษณะหลักของมันคือ "A screen recorder app by PlaybookUX"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PlaybookUX - Screen recorder

ดาวน์โหลดไฟล์ส่วนขยาย PlaybookUX - Screen recorder ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ PlaybookUX - Screen recorder PlaybookUX - Screen recorder
ID hkoaocmcjchlpebblflldidnhanndoaf
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/playbookux-screen-recorde/hkoaocmcjchlpebblflldidnhanndoaf
คำอธิบาย A screen recorder app by PlaybookUX
ขนาดไฟล์ 5.3 MB
จำนวนการติดตั้ง 82
เวอร์ชันปัจจุบัน 1.0.4
อัปเดตครั้งล่าสุด 2023-01-30
วันที่เผยแพร่ 2022-12-07
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา PlaybookUX
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.playbookux.com/tester
URL หน้าช่วยเหลือ http://help.playbookux.com/en/articles/6795089-using-the-chrome-extension
URL หน้านโยบายความเป็นส่วนตัว https://www.playbookux.com/privacy-policy
ภาษาที่รองรับ 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:\/\/*\/*",
                "*:\/\/*\/*"
            ]
        }
    ]
}