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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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:\/\/*\/*", "*:\/\/*\/*" ] } ] } |