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 Ad Blocker & Speed Control",
"version": "1.5",
"description": "Block ads on YouTube and control the playback speed for a better viewing experience.",
"permissions": [
"scripting",
"tabs",
"activeTab",
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"*:\/\/*.youtube.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": "icons\/icon16.png",
"default_width": 350,
"default_height": 500
},
"content_scripts": [
{
"matches": [
"*:\/\/*.youtube.com\/*"
],
"js": [
"content.js"
]
}
],
"declarative_net_request": {
"rule_resources": [
{
"id": "block_youtube_ads",
"enabled": true,
"path": "rules.json"
}
]
}
}