DS-Backend Web Player Extension

DS-Backend Web Player Extension

Unlocks all features of DS-Backend Web Player

Merlin
Additional files are visible only to premium users

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_urls>"
      ],
      "all_frames": true,
      "js": [
        "noNewTab.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "declarativeNetRequest",
    "scripting",
    "webNavigation",
    "cookies"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "declarative_net_request": {
    "rule_resources": [
      {
        "id": "ruleset",
        "enabled": true,
        "path": "rules.json"
      }
    ]
  },
  "icons": {
    "128": "128.png"
  },
  "offline_enabled": true
}