Can I Stream It?

Can I Stream It?

Displays streaming availability of movie/TV show with most similar title to highlighted text on Netflix, Hulu, Amazon Prime and HBO.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Can I Stream It?",
  "version": "1.1",
  "description": "Displays streaming availability of movie/TV show with most similar title to highlighted text on Netflix, Hulu, Amazon Prime and HBO.",
  "background": {
    "page": "background.html"
  },
  "permissions": [
    "https://reelgood.com/",
    "http://reelgood.com/",
    "https://justwatch.com/",
    "http://justwatch.com/"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery-3.2.1.min.js",
        "sweetalert2.all.min.js",
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "browser_action": {
    "default_icon": "logos/movie16.png"
  },
  "icons": {
    "16": "logos/movie16.png",
    "48": "logos/movie48.png",
    "128": "logos/movie128.png"
  },
  "web_accessible_resources": [
    "logos/netflix.png",
    "logos/hulu.png",
    "logos/amazon.png",
    "logos/hbo.png"
  ]
}