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 |
| 公式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 |
| Eメール | [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:\/\/*\/*",
"*:\/\/*\/*"
]
}
]
} | |