ThumbSee

ThumbSee

Odysee pages with a download button do not show any image. This adds the thumbnail image (but bigger) above the download button.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "ThumbSee",
  "version": "1.5",
  "description": "Odysee pages with a download button do not show any image. This adds the thumbnail image (but bigger) above the download button.",
  "content_scripts": [
    {
      "matches": [
        "*://odysee.com/*"
      ],
      "js": [
        "js/thumbsee.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://odysee.com/*"
      ],
      "resources": [
        "js/common.js"
      ]
    }
  ],
  "background": {
    "service_worker": "js/background.js",
    "type": "module"
  },
  "action": {
    "default_popup": "html/popup.html"
  },
  "icons": {
    "16": "icon/16.png",
    "32": "icon/32.png",
    "48": "icon/48.png",
    "128": "icon/128.png"
  },
  "permissions": [
    "storage"
  ]
}