Yodeck Web Player Extension

Unlocks all features of Yodeck Web Player

O que é Yodeck Web Player Extension?

Yodeck Web Player Extension é uma extensão do Chrome desenvolvida por https://www.yodeck.com, e sua principal característica é "Unlocks all features of Yodeck Web Player".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Yodeck Web Player Extension

Baixe arquivos de extensão Yodeck Web Player Extension 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 official Yodeck Web Player Extension unlocks all Yodeck Digital Signage features for Chrome! With it, you can preview playback in Chrome, or setup Chrome as a normal 24/7 Yodeck Web Player!

By installing the Web Player Extension, you will get:

- Screenshots in the Yodeck Portal
- All Web Pages will now work
- Apply Volume Schedules in Web Pages

Important notes:

- The Yodeck Web Player can be opened here: https://player.yodeck.com
- For setting up your computer as a 24/7 Yodeck Web Player (i.e. start Chrome on boot, go fullscreen, and more), read our instructions here: https://www.yodeck.com/docs/setting-up-yodeck-web-player
- If you need help using the Yodeck Web Player or you have any questions, please reach out by clicking the Support link above!                    

Informações Básicas da Extensão

Nome Yodeck Web Player Extension Yodeck Web Player Extension
ID kfmgapneffipolpljmofbmonafjlodim
URL Oficial https://chromewebstore.google.com/detail/yodeck-web-player-extensi/kfmgapneffipolpljmofbmonafjlodim
Descrição Unlocks all features of Yodeck Web Player
Tamanho do Arquivo 60.47 KB
Contagem de Instalações 10,000
Versão Atual 0.0.0.6
Última Atualização 2023-11-28
Data de Publicação 2021-10-21
Classificação 3.80/5 Total de 5 Avaliações
Desenvolvedor https://www.yodeck.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.yodeck.com/
URL da Página de Ajuda https://help.yodeck.com/
URL da Página de Política de Privacidade https://www.yodeck.com/privacy-policy
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Yodeck Web Player Extension",
    "description": "Unlocks all features of Yodeck Web Player",
    "version": "0.0.0.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_title": "Yodeck Extension Helper",
        "default_popup": ".\/popup\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.yodeck.com\/*"
            ],
            "all_frames": false,
            "run_at": "document_start",
            "js": [
                "contentScript.js"
            ]
        },
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "noNewTab.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "declarativeNetRequest",
        "scripting",
        "webNavigation",
        "cookies"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "inject.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "ruleset",
                "enabled": true,
                "path": "rules.json"
            }
        ]
    },
    "icons": {
        "128": "128.png"
    },
    "offline_enabled": true
}