Crunchyroll Synopsis Hider

An extension that hides the synopsis for anime episodes on Crunchyroll for the sake of hiding spoilers.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Crunchyroll Synopsis Hider",
  "description": "An extension that hides the synopsis for anime episodes on Crunchyroll for the sake of hiding spoilers.",
  "version": "1.1.0",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "css": [
        "crunchyroll.css"
      ],
      "matches": [
        "http://www.crunchyroll.com/*"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "http://www.crunchyroll.com/*",
    "tabs"
  ],
  "web_accessible_resources": [
    "crunchyroll.css"
  ]
}