Yodeck Web Player Extension

Unlocks all features of Yodeck Web Player

什么是Yodeck Web Player Extension?

Yodeck Web Player Extension是由https://www.yodeck.com开发的Chrome扩展程序,该扩展的主要功能是“Unlocks all features of Yodeck Web Player”。

扩展截图

screenshot

下载Yodeck Web Player Extension扩展crx文件

下载Yodeck Web Player Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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!                    

扩展基本信息

名称 Yodeck Web Player Extension Yodeck Web Player Extension
ID kfmgapneffipolpljmofbmonafjlodim
官方URL https://chromewebstore.google.com/detail/yodeck-web-player-extensi/kfmgapneffipolpljmofbmonafjlodim
简介 Unlocks all features of Yodeck Web Player
文件大小 60.47 KB
安装次数 10,000
当前版本 0.0.0.6
更新时间 2023-11-28
上架时间 2021-10-21
评分 3.80/5 共5次评分
开发者 https://www.yodeck.com
电子邮箱 [email protected]
付费类型 free
扩展官网 https://www.yodeck.com/
帮助页面URL https://help.yodeck.com/
隐私政策页面URL https://www.yodeck.com/privacy-policy
支持的语言 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
}