PlaybookUX - Screen recorder

A screen recorder app by PlaybookUX

Qu'est-ce que PlaybookUX - Screen recorder ?

PlaybookUX - Screen recorder est une extension Chrome développée par PlaybookUX, et sa fonction principale est "A screen recorder app by PlaybookUX".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension PlaybookUX - Screen recorder

Téléchargez les fichiers d'extension PlaybookUX - Screen recorder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom PlaybookUX - Screen recorder PlaybookUX - Screen recorder
ID hkoaocmcjchlpebblflldidnhanndoaf
URL Officiel https://chromewebstore.google.com/detail/playbookux-screen-recorde/hkoaocmcjchlpebblflldidnhanndoaf
Description A screen recorder app by PlaybookUX
Taille du Fichier 5.3 MB
Nombre d'Installations 82
Version Actuelle 1.0.4
Dernière Mise à Jour 2023-01-30
Date de Publication 2022-12-07
Évaluation 5.00/5 Total 2 Évaluations
Développeur PlaybookUX
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.playbookux.com/tester
URL de la Page d'Aide http://help.playbookux.com/en/articles/6795089-using-the-chrome-extension
URL de la Page de Politique de Confidentialité https://www.playbookux.com/privacy-policy
Langues Prises en Charge 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:\/\/*\/*",
                "*:\/\/*\/*"
            ]
        }
    ]
}