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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
}