Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"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.8",
"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\/*"
]
}
]
}