No Scary Parts

No Scary Parts

Automatically skip the scary parts of popular family movies on streaming services like Disney+

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "No Scary Parts",
  "short_name": "No Scary Parts",
  "version": "1.8.1",
  "manifest_version": 3,
  "description": "Automatically skip the scary parts of popular family movies on streaming services like Disney+",
  "homepage_url": "https://thomaspark.co/projects/no-scary-parts/",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.disneyplus.com/*"
      ],
      "js": [
        "app.js"
      ],
      "css": [
        "styles.css"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webNavigation"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "data.json"
      ],
      "matches": [
        "https://www.disneyplus.com/*"
      ]
    }
  ]
}