Youtube Eye: Find popular (month, year, etc)

Youtube Eye: Find popular (month, year, etc)

Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Youtube Eye: Find popular (month, year, etc)",
  "short_name": "Youtube Eye",
  "version": "0.0.7",
  "description": "Find a Youtube channel's most popular videos from the past week, month, year, or within any date range.",
  "host_permissions": [
    "https://*.youtube.com/*"
  ],
  "permissions": [
    "storage",
    "scripting"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "js": [
        "preamble.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "128": "./128.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "main.js"
      ],
      "matches": [
        "https://*.youtube.com/*"
      ]
    }
  ]
}