CleanTube

YouTube with less clutter.

CleanTube क्या है?

CleanTube elliotwaite द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "YouTube with less clutter."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CleanTube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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"
    ]
}