PlaybookUX - Screen recorder

A screen recorder app by PlaybookUX

O que é PlaybookUX - Screen recorder?

PlaybookUX - Screen recorder é uma extensão do Chrome desenvolvida por PlaybookUX, e sua principal característica é "A screen recorder app by PlaybookUX".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão PlaybookUX - Screen recorder

Baixe arquivos de extensão PlaybookUX - Screen recorder no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PlaybookUX - Screen recorder PlaybookUX - Screen recorder
ID hkoaocmcjchlpebblflldidnhanndoaf
URL Oficial https://chromewebstore.google.com/detail/playbookux-screen-recorde/hkoaocmcjchlpebblflldidnhanndoaf
Descrição A screen recorder app by PlaybookUX
Tamanho do Arquivo 5.3 MB
Contagem de Instalações 82
Versão Atual 1.0.4
Última Atualização 2023-01-30
Data de Publicação 2022-12-07
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor PlaybookUX
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.playbookux.com/tester
URL da Página de Ajuda http://help.playbookux.com/en/articles/6795089-using-the-chrome-extension
URL da Página de Política de Privacidade https://www.playbookux.com/privacy-policy
Idiomas Suportados 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:\/\/*\/*",
                "*:\/\/*\/*"
            ]
        }
    ]
}