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",
"name": "YouTube Shorts Blocker",
"description": "Block YouTube shorts and remind to save dopamine!",
"version": "1.0.0",
"manifest_version": 3,
"icons": {
"128": "icons\/icon.png"
},
"background": {
"service_worker": "background.js"
},
"permissions": [
"declarativeNetRequest"
],
"host_permissions": [
"*:\/\/www.youtube.com\/*"
],
"content_scripts": [
{
"matches": [
"*:\/\/www.youtube.com\/*"
],
"js": [
"content.js"
]
}
]
}