Examine source code of CrunchyrollSpoilerStopper

Inspect and view changes in CrunchyrollSpoilerStopper 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": "Crunchyroll Spoiler Stopper",
  "version": "1.1.4",
  "manifest_version": 3,
  "browser_specific_settings": {
    "gecko": {
      "id": "{b198c969-47fe-4ec4-a769-27e9106e9cd8}"
    }
  },
  "description": "Removes all thumbnails and titles while browsing crunchyroll.com",
  "icons": {
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.crunchyroll.com/*"
      ],
      "js": [
        "content_scripts/thumbnails.js",
        "content_scripts/titles.js"
      ],
      "css": [
        "content_scripts/titles.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "action": {
    "default_icon": {
      "19": "icons/icon19.png",
      "38": "icons/icon38.png",
      "128": "icons/icon128.png"
    },
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "storage"
  ]
}