Inspect and view changes in DF YouTube - Distraction Free YouTube source codes across current and past versions
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": 2,
"name": "DF YouTube - Distraction Free YouTube",
"version": "1.0.4",
"description": "Remove feeds, comments, recommendations, shorts, and other distractions from YouTube",
"permissions": [
"storage",
"activeTab",
"*://*.youtube.com/*"
],
"browser_action": {
"default_popup": "src/popup/index.html",
"default_icon": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
}
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"scripts": [
"src/background/index.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"js": [
"src/content/index.js"
],
"css": [
"src/content/style.css"
],
"run_at": "document_start"
}
],
"browser_specific_settings": {
"gecko": {
"id": "dfyoutube-extension@example.com"
}
},
"content_security_policy": "script-src 'self' 'unsafe-inline'; object-src 'self'"
}