ZenTube
Zen mode for YouTube
What is ZenTube?
ZenTube is a Chrome extension developed by inversepolarity, and its main feature is "Zen mode for YouTube".
Extension Screenshots
Download ZenTube Extension CRX File
Download ZenTube extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Consume YouTube more productively by making it less addictive/distracting. Hide unncessary elements or mix-n-match which elements to show, get your peace of mind back! Extension is completely open source.
Extension Basic Information
Name | ZenTube |
ID | ghfgfebinnjlnbidclplakjfielgpokd |
Official URL | https://chromewebstore.google.com/detail/zentube/ghfgfebinnjlnbidclplakjfielgpokd |
Description | Zen mode for YouTube |
File Size | 101 KB |
Installation Count | 81 |
Current Version | 1.1.4 |
Last Updated | 2023-04-20 |
Publish Date | 2022-09-12 |
Rating | 5.00/5 Total 3 Ratings |
Developer | inversepolarity |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/inversepolarity/ZenTube |
Help Page URL | https://evenzero.in/experiments |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "Zen mode for YouTube", "manifest_version": 3, "name": "ZenTube", "version": "1.1.4", "author": "surajsharma", "homepage_url": "https:\/\/evenzero.in", "icons": { "144": "icons\/favicon4_144.png" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "browser-polyfill.js", "defaultSettings.js", "contentscript.js", "emoji.js" ], "run_at": "document_start" } ], "action": { "default_icon": "icons\/favicon4_144.png", "default_title": "Zen Mode for Youtube", "default_popup": "options\/options.html" }, "permissions": [ "storage", "tabs", "scripting", "activeTab" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ] } |