Trends v2 for YouTube™

Trends v2 for YouTube™

Filter the trends how you like 'em.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "version": "1.0",
  "version_name": "1.0 beta",
  "description": "__MSG_extDesc__",
  "default_locale": "en",
  "homepage_url": "https://lars.koelker.dev/extensions/yt-trends-v2/",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "permissions": [
    "storage",
    "unlimitedStorage",
    "activeTab",
    "notifications",
    "contextMenus"
  ],
  "optional_permissions": [
    "https://lars.koelker.dev/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.youtube.com/*"
      ],
      "js": [
        "js/trendsBtn.js",
        "js/selectChannel.js"
      ],
      "css": [
        "css/content.min.css"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/feed/trending*"
      ],
      "js": [
        "js/trends.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/16x16.png",
      "32": "images/32x32.png",
      "48": "images/48x48.png",
      "128": "images/128x128.png"
    }
  },
  "icons": {
    "16": "images/16x16.png",
    "32": "images/32x32.png",
    "48": "images/48x48.png",
    "128": "images/128x128.png"
  },
  "manifest_version": 2,
  "web_accessible_resources": [
    "manifest.json"
  ]
}