Blurred thumbnails
Blur thumbnails on YT page for whatever reason
Blurred thumbnails क्या है?
Blurred thumbnails krzysiek.kurczewski द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blur thumbnails on YT page for whatever reason"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Blurred thumbnails एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Extension allows to selectively blur thumbnails on Youtube videos. # Possible configuration: - Whitelist & blacklist - Channel name - Keywords in video title # How to configure: - Click extension icon to open options - Click on tags to edit existing keywords - Press enter to add new keywords - For channels use plain names (including spaces) - Use: ".*" as a keyword to match all patterns - Use "Test phrase" input on bottom to check which tags will apply for given plain text
एक्सटेंशन की मूल जानकारी
नाम | Blurred thumbnails |
ID | lefhalefpinohjmpfflkfcaoiafmpifb |
आधिकारिक URL | https://chromewebstore.google.com/detail/blurred-thumbnails/lefhalefpinohjmpfflkfcaoiafmpifb |
विवरण | Blur thumbnails on YT page for whatever reason |
फ़ाइल का आकार | 26.32 KB |
स्थापना संख्या | 645 |
वर्तमान संस्करण | 1.5.0 |
अंतिम अपडेट | 2024-02-18 |
प्रकाशन तिथि | 2023-03-25 |
रेटिंग | 4.78/5 कुल 9 रेटिंग्स |
डेवलपर | krzysiek.kurczewski |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/kkurczewski/blur-youtube-thumbnails |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Blurred thumbnails", "version": "1.5.0", "description": "Blur thumbnails on YT page for whatever reason", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "host_permissions": [ "https:\/\/www.youtube.com\/*", "https:\/\/m.youtube.com\/*" ], "options_page": "options\/index.html", "background": { "service_worker": "hook\/onInstall.js" }, "action": [], "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "content\/blur.js", "content\/observer\/mutationObserver.js", "content\/selectors\/home.js", "content\/selectors\/watch.js", "content\/selectors\/results.js", "content\/selectors\/playlists.js", "content\/video.js", "content\/recycler.js", "content\/index.js" ], "css": [ "content\/style.css" ] }, { "matches": [ "https:\/\/m.youtube.com\/*" ], "js": [ "content\/blur.js", "content\/observer\/mutationObserver.js", "content\/selectors\/home.m.js", "content\/selectors\/watch.m.js", "content\/video.js", "content\/index.m.js" ], "css": [ "content\/style.m.css" ] } ], "permissions": [ "storage" ] } |