DS-Backend Web Player Extension

Unlocks all features of DS-Backend Web Player

What is DS-Backend Web Player Extension?

DS-Backend Web Player Extension is a Chrome extension developed by DS-Backend, and its main feature is "Unlocks all features of DS-Backend Web Player".

Extension Screenshots

screenshot

Download DS-Backend Web Player Extension Extension CRX File

Download DS-Backend Web Player Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name DS-Backend Web Player Extension DS-Backend Web Player Extension
ID jchbelfihmdlacgfkpbolpmabhmphcnj
Official URL https://chromewebstore.google.com/detail/ds-backend-web-player-ext/jchbelfihmdlacgfkpbolpmabhmphcnj
Description Unlocks all features of DS-Backend Web Player
File Size 53.41 KB
Installation Count 356
Current Version 0.0.0.6
Last Updated 2023-11-28
Publish Date 2021-10-22
Developer DS-Backend
Email [email protected]
Payment Type free
Extension Website https://app.dsbackend.com/
Help Page URL https://app.dsbackend.com/
Privacy Policy Page URL https://app.dsbackend.com/privacy
Supported Languages 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
}