removes ads from youtube
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"name": "No ads?",
"description": "removes ads from youtube",
"version": "3.3",
"icons": {
"16": "/images/16.png",
"48": "/images/48.png",
"128": "/images/128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*"
],
"js": [
"no ads-yt.js"
],
"run_at": "document_end"
},
{
"matches": [
"https://www.crunchyroll.com/watch/*"
],
"js": [
"no ads-crunchyroll.js"
],
"run_at": "document_start"
}
],
"action": {
"default_title": "no ads",
"default_popup": "popup/popup.html"
},
"permissions": [
"scripting",
"activeTab",
"tabs",
"storage"
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}