Super Magic Link

Super Magic Link

Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Super Magic Link",
  "description": "Super Magic Link is the easiest way to watch TV, Movies, and music with your favourite Twitch streamers",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "version": "1.2",
  "manifest_version": 2,
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*"
      ],
      "js": [
        "content-script-netflix.js"
      ]
    },
    {
      "matches": [
        "https://supermagiclink.com/*"
      ],
      "js": [
        "content-script-sml.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://supermagiclink.com/*",
      "*://*.netflix.com/*"
    ]
  },
  "permissions": [
    "tabs",
    "https://*.netflix.com/*"
  ],
  "web_accessible_resources": [
    "*.js"
  ],
  "browser_action": {}
}