Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Youtube Video Speed Controller",
"version": "1.0.0",
"description": "Use this extension to adjust video speed on YouTube with options like 0.5x, 1.0x, 1.5x, 2.0x, and 2.5x.",
"action": {
"default_popup": "popup.html",
"default_title": "Youtube Video Speed Controller",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"permissions": [
"storage",
"tabs",
"contextMenus",
"notifications"
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"host_permissions": [
"*:\/\/*\/*"
],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_idle"
}
]
}