PlaybookUX - Screen recorder
A screen recorder app by PlaybookUX
Wat is PlaybookUX - Screen recorder?
PlaybookUX - Screen recorder is een Chrome-extensie ontwikkeld door PlaybookUX, en de belangrijkste functie is "A screen recorder app by PlaybookUX".
Extensie Screenshots
Download het CRX-bestand van de extensie PlaybookUX - Screen recorder
Download PlaybookUX - Screen recorder-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | hkoaocmcjchlpebblflldidnhanndoaf |
| Officiële URL | https://chromewebstore.google.com/detail/playbookux-screen-recorde/hkoaocmcjchlpebblflldidnhanndoaf |
| Beschrijving | A screen recorder app by PlaybookUX |
| Bestandsgrootte | 5.3 MB |
| Aantal Installaties | 82 |
| Huidige Versie | 1.0.4 |
| Laatst Bijgewerkt | 2023-01-30 |
| Publicatiedatum | 2022-12-07 |
| Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
| Ontwikkelaar | PlaybookUX |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | https://www.playbookux.com/tester |
| Help Pagina-URL | http://help.playbookux.com/en/articles/6795089-using-the-chrome-extension |
| URL van de Privacybeleid Pagina | https://www.playbookux.com/privacy-policy |
| Ondersteunde Talen | 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:\/\/*\/*",
"*:\/\/*\/*"
]
}
]
} | |