CleanTube

YouTube with less clutter.

What is CleanTube?

CleanTube is a Chrome extension developed by elliotwaite, and its main feature is "YouTube with less clutter.".

Extension Screenshots

screenshot

Download CleanTube Extension CRX File

Download CleanTube 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

                        This extension hides the following YouTube elements:
  •  The row of recommended videos that appear when a video is paused.
  •  The wall of recommended videos that appear at the end of a video.
  •  Channel watermark logos that appear in the bottom right of videos.
  •  The "Watch later" and "Add to queue" icon buttons that appear over the top right of thumbnails when they are hovered over.

This extension is open source on GitHub. If you find any bugs or have any suggestions, please open an issue here: https://github.com/elliotwaite/cleantube

Thanks. Enjoy!                    

Extension Basic Information

Name CleanTube CleanTube
ID kanfjhdeebkfgkbmnfknhejpadhlmiab
Official URL https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab
Description YouTube with less clutter.
File Size 8.85 KB
Installation Count 1,633
Current Version 0.4
Last Updated 2023-08-01
Publish Date 2021-06-29
Rating 3.80/5 Total 5 Ratings
Developer elliotwaite
Email [email protected]
Payment Type free
Extension Website https://github.com/elliotwaite/cleantube
Help Page URL https://github.com/elliotwaite/cleantube
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "CleanTube",
    "version": "0.4",
    "description": "YouTube with less clutter.",
    "author": "Elliot Waite",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_title": "Options",
        "default_popup": "options.html"
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": false
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*",
                "*:\/\/*.youtube-nocookie.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "*:\/\/*.youtube.com\/*",
        "*:\/\/*.youtube-nocookie.com\/*",
        "storage"
    ]
}