Likewise

Likewise

Discover the best shows and movies and save them to your personal watchlist

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Likewise",
  "version": "0.0.8",
  "manifest_version": 3,
  "description": "Discover the best shows and movies and save them to your personal watchlist",
  "homepage_url": "https://likewisetv.com/",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png"
  },
  "background": {
    "service_worker": "asset/sw.js"
  },
  "permissions": [
    "cookies",
    "storage",
    "contextMenus"
  ],
  "host_permissions": [
    "https://likewisetv.com/*"
  ],
  "action": {
    "default_title": "likewisetv",
    "default_popup": "popup/index.html"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "asset/inter.css",
        "asset/content.css"
      ],
      "js": [
        "asset/jquery.js",
        "asset/jquery.mark.min.js",
        "asset/content.js"
      ],
      "exclude_matches": [
        "https://likewise.com/*",
        "https://likewisetv.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "asset/*.png",
        "icons/*.png",
        "icons/*.jpeg"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'",
    "sandbox": "sandbox script-src 'self' 'unsafe-eval'; object-src 'self'"
  }
}