Hides or shows the YouTube video controls.
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": "Youtube Zen",
"version": "2.0.1",
"description": "Hides or shows the Youtube video controls.",
"homepage_url": "https://github.com/Stevox404/youtube-zen",
"icons": {
"48": "icons/zen-min-48.png",
"96": "icons/zen-min-96.png"
},
"permissions": [
"activeTab",
"*://*.youtube.com/*"
],
"browser_action": {
"browser_style": true,
"default_icon": "icons/zen-min-96.png",
"default_title": "Youtube Zen",
"default_popup": "popup/index.html"
},
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*"
],
"all_frames": true,
"js": [
"zen.js"
],
"css": [
"zen.css"
]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{7f5dbd00-a296-4696-aebb-06a992c1b4cf}"
}
}
}