Vine Leaves

Vine Leaves

Skip unacceptable scenes on Netflix

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "0.2.18",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "storage",
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "page_action": {
    "default_icon": {
      "19": "icon_128.png",
      "38": "icon_128.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "index.html",
    "show_matches": [
      "*://www.netflix.com/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.netflix.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://www.netflix.com/*"
    ]
  },
  "web_accessible_resources": [
    "scenes/*.json",
    "vendor/lz-string.js",
    "page.js",
    "icon_128.png",
    "pg_128.png"
  ],
  "content_security_policy": "script-src 'self' 'sha256-3Nk0h1ySFVujoJ/alFFje/Tl0DmKbR6oRF+IZkLL9CY='; object-src 'self'",
  "icons": {
    "32": "icon_32.png",
    "64": "icon_64.png",
    "128": "icon_128.png"
  }
}