PlaybookUX - Screen recorder
A screen recorder app by PlaybookUX
什麼是PlaybookUX - Screen recorder?
PlaybookUX - Screen recorder是由PlaybookUX開發的Chrome擴展程式,該擴展的主要功能是“A screen recorder app by PlaybookUX”。
擴展截圖
下載PlaybookUX - Screen recorder擴展crx文件
下載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. 擴展基本資訊
| 名稱 | |
| ID | hkoaocmcjchlpebblflldidnhanndoaf |
| 官方網址 | 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:\/\/*\/*",
"*:\/\/*\/*"
]
}
]
} | |