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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unlocks all features of DS-Backend Web Player"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में DS-Backend Web Player Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}