CleanTube

YouTube with less clutter.

Apa itu CleanTube?

CleanTube adalah ekstensi Chrome yang dikembangkan oleh elliotwaite, dan fitur utamanya adalah "YouTube with less clutter.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi CleanTube

Unduh file ekstensi CleanTube dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama CleanTube CleanTube
ID kanfjhdeebkfgkbmnfknhejpadhlmiab
URL Resmi https://chromewebstore.google.com/detail/cleantube/kanfjhdeebkfgkbmnfknhejpadhlmiab
Deskripsi YouTube with less clutter.
Ukuran File 8.85 KB
Jumlah Instalasi 1,633
Versi Saat Ini 0.4
Terakhir Diperbarui 2023-08-01
Tanggal Publikasi 2021-06-29
Penilaian 3.80/5 Total 5 Penilaian
Pengembang elliotwaite
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/elliotwaite/cleantube
URL Halaman Bantuan https://github.com/elliotwaite/cleantube
Bahasa yang Didukung 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"
    ]
}