Moral silencing of YouTube ads.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Silent YouTube Ads",
"author": "Tim Branyen (@tbranyen)",
"version": "0.1.4",
"description": "Moral silencing of YouTube ads.",
"default_locale": "en",
"content_scripts": [
{
"matches": [
"http://*.youtube.com/watch*",
"https://*.youtube.com/watch*"
],
"js": [
"js/contentscript.js"
],
"run_at": "document_end"
}
],
"permissions": [
"http://*/*",
"https://*/*"
],
"web_accessible_resources": [
"js/**/*",
"js/contentscript.js.map"
]
}