Clickbait Remover for Youtube

Replaces thumbnails and modifies titles of videos on youtube.com

Clickbait Remover for Youtube क्या है?

Clickbait Remover for Youtube Pieter van Heijningen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Replaces thumbnails and modifies titles of videos on youtube.com"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension replaces thumbnails with a frame from the video, effectively removing any clickbait while still showing a high quality thumbnail so you can still get a good idea of what the video is about.
It can also modify titles to stop partial or all caps titles.

It works everywhere on Youtube including the homepage, trending page, subscription page and channel pages.

All functionality of the extension is customizable by clicking the extension icon on the top right, you can see the effect that different options have right away if you have a youtube tab open, no need to reload the page. And also on mobile.

This extension might help people who have a Youtube addiction or anyone who just doesn't want to be distracted by flashy thumbnails and all caps titles while trying to find some quality content.

Source code: https://github.com/pietervanheijningen/clickbait-remover-for-youtube
Firefox version: https://addons.mozilla.org/firefox/addon/clickbait-remover-for-youtube                    

एक्सटेंशन की मूल जानकारी

नाम Clickbait Remover for Youtube Clickbait Remover for Youtube
ID omoinegiohhgbikclijaniebjpkeopip
आधिकारिक URL https://chromewebstore.google.com/detail/clickbait-remover-for-you/omoinegiohhgbikclijaniebjpkeopip
विवरण Replaces thumbnails and modifies titles of videos on youtube.com
फ़ाइल का आकार 23.31 KB
स्थापना संख्या 43,506
वर्तमान संस्करण 0.9
अंतिम अपडेट 2023-09-04
प्रकाशन तिथि 2019-10-16
रेटिंग 4.54/5 कुल 181 रेटिंग्स
डेवलपर Pieter van Heijningen
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/pietervanheijningen/clickbait-remover-for-youtube
सहायता पृष्ठ URL https://github.com/pietervanheijningen/clickbait-remover-for-youtube/issues
समर्थित भाषाएँ en,fr,tr,et,ru,ar
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_extensionName__",
    "short_name": "Clickbait Remover",
    "default_locale": "en",
    "version": "0.9",
    "description": "__MSG_extensionDescription__",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/m.youtube.com\/*"
            ],
            "js": [
                "js\/youtube.js"
            ]
        }
    ],
    "background": {
        "service_worker": "js\/background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/clickbait_remover_icon16.png",
            "32": "images\/clickbait_remover_icon32.png"
        },
        "default_title": "Clickbait Remover for Youtube",
        "default_popup": "options_popup.html"
    },
    "icons": {
        "16": "images\/clickbait_remover_icon16.png",
        "32": "images\/clickbait_remover_icon32.png",
        "48": "images\/clickbait_remover_icon48.png",
        "128": "images\/clickbait_remover_icon128.png"
    },
    "permissions": [
        "storage",
        "declarativeNetRequestWithHostAccess",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/www.youtube.com\/*",
        "*:\/\/m.youtube.com\/*",
        "*:\/\/i.ytimg.com\/*"
    ]
}