YouTube Blacklist
Hide specific channels or videos from YouTube search results
YouTube Blacklist क्या है?
YouTube Blacklist datakun द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide specific channels or videos from YouTube search results"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouTube Blacklist एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Hide specific channels or videos from YouTube search results. In YouTube search results, you can hide a channel or video from the search results by clicking the menu icon to the right of the channel or video you don't want to see and then "Hide this channel" or "Hide this video" menu. Hidden channels or videos can be viewed and removed from the options page of the extension. Change Log: - 0.3.0 - Options page improvements. - 0.2.0 - Channels or videos registered on the blacklist are hidden from the YouTube main page.
एक्सटेंशन की मूल जानकारी
नाम | YouTube Blacklist |
ID | fgapocjejiiecmooibicahfjngjbgaak |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-blacklist/fgapocjejiiecmooibicahfjngjbgaak |
विवरण | Hide specific channels or videos from YouTube search results |
फ़ाइल का आकार | 293 KB |
स्थापना संख्या | 222 |
वर्तमान संस्करण | 0.3.0 |
अंतिम अपडेट | 2022-01-17 |
प्रकाशन तिथि | 2022-01-07 |
डेवलपर | datakun |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/datakun/YouTube-Blacklist/issues |
समर्थित भाषाएँ | en,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Blacklist", "description": "__MSG_description__", "version": "0.3.0", "manifest_version": 3, "background": { "service_worker": ".\/build\/background.js" }, "content_scripts": [ { "js": [ "build\/injection.js" ], "css": [ "build\/injection.css" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "host_permissions": [ "https:\/\/www.youtube.com\/*" ], "permissions": [ "storage", "activeTab", "scripting" ], "action": { "default_popup": ".\/popup.html", "default_icon": { "16": ".\/images\/ic_youtube_blacklist_16.png", "32": ".\/images\/ic_youtube_blacklist_32.png", "48": ".\/images\/ic_youtube_blacklist_48.png", "128": ".\/images\/ic_youtube_blacklist_128.png" } }, "icons": { "16": ".\/images\/ic_youtube_blacklist_16.png", "32": ".\/images\/ic_youtube_blacklist_32.png", "48": ".\/images\/ic_youtube_blacklist_48.png", "128": ".\/images\/ic_youtube_blacklist_128.png" }, "options_page": ".\/options.html", "default_locale": "en" } |