CleanTube

YouTube with less clutter.

什麼是CleanTube?

CleanTube是由elliotwaite開發的Chrome擴展程式,該擴展的主要功能是“YouTube with less clutter.”。

擴展截圖

screenshot

下載CleanTube擴展crx文件

下載CleanTube擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 CleanTube CleanTube
ID kanfjhdeebkfgkbmnfknhejpadhlmiab
官方網址 https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab
簡介 YouTube with less clutter.
檔案大小 8.85 KB
安裝次數 1,633
目前版本 0.4
更新時間 2023-08-01
上架時間 2021-06-29
評分 3.80/5 共 5 次評分
開發者 elliotwaite
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/elliotwaite/cleantube
說明頁面URL https://github.com/elliotwaite/cleantube
支援的語言 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"
    ]
}