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ファイルをダウンロード

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
Eメール [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
}