An extension that make YouTube less distractive by bluring all video previews.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "BlurTube - Blur all Youtube video previews",
"version": "0.0.2",
"description": "An extension that make Youtube less distractive by bluring all video previews.",
"manifest_version": 2,
"permissions": [
"storage"
],
"content_scripts": [
{
"run_at": "document_start",
"all_frames": true,
"matches": [
"*://*.youtube.com/*"
],
"js": [
"filter.js"
]
}
],
"browser_action": {
"default_icon": "images/bl128.png",
"default_popup": "popup.html",
"browser_style": true
},
"icons": {
"16": "images/bl16.png",
"32": "images/bl32.png",
"128": "images/bl128.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{f4846d87-9e1a-4ccf-86fe-8a2f9e04da5f}"
}
}
}