DS-Backend Web Player Extension

Unlocks all features of DS-Backend Web Player

DS-Backend Web Player Extension란 무엇입니까?

DS-Backend Web Player Extension은(는) DS-Backend에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Unlocks all features of DS-Backend Web Player"입니다.

확장 프로그램 스크린샷

screenshot

DS-Backend Web Player Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
}