DS-Backend Web Player Extension

Unlocks all features of DS-Backend Web Player

DS-Backend Web Player Extensionคืออะไร?

DS-Backend Web Player Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย DS-Backend และคุณลักษณะหลักของมันคือ "Unlocks all features of DS-Backend Web Player"

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

screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย DS-Backend Web Player Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        The DS-Backend Web Player Extension unlocks all DS-Backend features for Chrome! With it, you can preview playback in Chrome, or setup Chrome as a normal 24/7 DS-Backend Web Player!

By installing the Web Player Extension, you will get:

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

Important notes:
 
- The DS-Backend Web Player can be opened here: https://player.dsbackend.com 
- For setting up your computer as a 24/7 Web Player (i.e. start Chrome on boot, go fullscreen, and more), please follow instructions from support.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ DS-Backend Web Player Extension DS-Backend Web Player Extension
ID jchbelfihmdlacgfkpbolpmabhmphcnj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ds-backend-web-player-ext/jchbelfihmdlacgfkpbolpmabhmphcnj
คำอธิบาย Unlocks all features of DS-Backend Web Player
ขนาดไฟล์ 53.41 KB
จำนวนการติดตั้ง 356
เวอร์ชันปัจจุบัน 0.0.0.6
อัปเดตครั้งล่าสุด 2023-11-28
วันที่เผยแพร่ 2021-10-22
ผู้พัฒนา DS-Backend
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://app.dsbackend.com/
URL หน้าช่วยเหลือ https://app.dsbackend.com/
URL หน้านโยบายความเป็นส่วนตัว https://app.dsbackend.com/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "DS-Backend Web Player Extension",
    "description": "Unlocks all features of DS-Backend Web Player",
    "version": "0.0.0.6",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.dsbackend.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
}