BestYT 移除討人厭片尾縮圖

BestYT 移除討人厭片尾縮圖

每次到了片尾影片還沒結束,卻已經出現討人厭推薦縮圖,直接移除它。4xDev(4-x.tw)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "BestYT 移除討人厭片尾縮圖",
  "short_name": "BestYT",
  "description": "每次到了片尾影片還沒結束,卻已經出現討人厭推薦縮圖,直接移除它。4xDev(4-x.tw)",
  "version": "3.1",
  "action": {
    "default_title": "BestYT",
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}