Autoplay Youtube Thumbnail Previews Thingy

Autoplay Youtube Thumbnail Previews Thingy

Animate all the Youtube preview thumbnails at the same time.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Autoplay Youtube Thumbnail Previews Thingy",
  "description": "Animate all the Youtube preview thumbnails at the same time.",
  "version": "1.0.0",
  "icons": {
    "16": "assets/logo/logo-16.png",
    "48": "assets/logo/logo-48.png",
    "128": "assets/logo/logo-128.png"
  },
  "action": {
    "default_title": "Autoplay Youtube Thumbnail Previews Thingy",
    "default_popup": "popup/popup.html"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "js": [
        "assets/js/jquery.js",
        "assets/js/listing.js"
      ],
      "matches": [
        "https://www.youtube.com/*"
      ]
    }
  ]
}