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": "SmartVideo For YouTube",
"version": "1.3",
"description": "Control YouTube buffering, auto-loop, and quality settings.",
"permissions": [
"storage",
"cookies"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*",
"https:\/\/myexthub.com\/*"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
}
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"player.js"
],
"run_at": "document_end",
"world": "MAIN"
},
{
"matches": [
"https:\/\/myexthub.com\/*"
],
"js": [
"auth_content.js"
]
}
],
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"icons\/*"
],
"matches": [
"*:\/\/*.youtube.com\/*"
]
}
]
}