Use My Subscription

Use My Subscription

UMS ext thingies

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "1.1.2",
  "name": "Use My Subscription",
  "description": "UMS ext thingies",
  "short_name": "UMS",
  "current_locale": "10",
  "background": {
    "persistent": true,
    "scripts": [
      "./js/bg.js"
    ]
  },
  "browser_action": {
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "img/*"
  ],
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "storage",
    "webRequest",
    "webRequestBlocking",
    "https://*.netflix.com/*",
    "privacy",
    "cookies"
  ],
  "content_security_policy": "script-src 'self'; object-src 'self'",
  "content_scripts": [
    {
      "matches": [
        "https://*.netflix.com/*"
      ],
      "js": [
        "./js/netflix.js"
      ]
    },
    {
      "matches": [
        "https://*.usemysubscription.com/*"
      ],
      "js": [
        "./js/ums.js"
      ]
    }
  ],
  "externally_connectable": {
    "ids": [
      "ofgnbfphjdcijfhoiokilpbdlhdklmkm"
    ],
    "matches": [
      "https://*.usemysubscription.com/*"
    ],
    "accepts_tls_channel_id": false
  }
}