Yodeck Web Player Extension

Unlocks all features of Yodeck Web Player

Yodeck Web Player Extensionคืออะไร?

Yodeck Web Player Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.yodeck.com และคุณลักษณะหลักของมันคือ "Unlocks all features of Yodeck Web Player"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Yodeck Web Player Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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
}