Examine source code of SVODEX

Inspect and view changes in SVODEX source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "name": "SVODEX",
  "version": "3.3.5",
  "description": "Adds the IMDb and Rotten Tomatoes rating to every available title on Netflix, Disney+ and HBO Max",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.netflix.com/*",
        "https://www.disneyplus.com/*",
        "https://play.hbomax.com/*",
        "https://play.max.com/*",
        "https://www.primevideo.com/*",
        "https://www.apple.com/*",
        "https://www.hulu.com/"
      ],
      "js": [
        "main.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_title": "SVODEX",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "*.svg"
      ],
      "matches": [
        "https://play.hbomax.com/*",
        "https://play.max.com/*",
        "https://www.netflix.com/*",
        "https://www.disneyplus.com/*"
      ]
    }
  ],
  "icons": {
    "128": "logo_small.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "imdb-rt-streaming@domain.com"
    }
  },
  "manifest_version": 3,
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}