No Summary For You!

No Summary For You!

Hide summaries/synopses on Netflix by blurring them until you hover your cursor over them. No more spoilers! The blur can also be toggled using the toolbar button when you want to see all summaries.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "No Summary For You!",
  "description": "Hides summaries for movies and TV shows on Netflix.",
  "homepage_url": "https://nosummaryforyou.com",
  "author": "Tim Andersson",
  "version": "1.1resigned1",
  "icons": {
    "16": "Icon-16.png",
    "48": "Icon-48.png",
    "128": "Icon-128.png"
  },
  "permissions": [
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.netflix.com/*"
      ],
      "css": [
        "Styles/netflix.css",
        "Styles/extension.css"
      ],
      "js": [
        "Scripts/ContentScripts/netflix.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "Scripts/BackgroundScripts/netflix.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "38": "toolbar.svg"
    },
    "default_title": "No Summary For You!"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{5d7026d0-1db7-423c-98f6-1296e6dcc92a}"
    }
  }
}