Hide YouTube Thumbnails
Hide YouTube Thumbnails for less clickbaity browsing
Hide YouTube Thumbnails क्या है?
Hide YouTube Thumbnails Adam Jones द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide YouTube Thumbnails for less clickbaity browsing"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hide YouTube Thumbnails एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Simply hides thumbnails on YouTube to have a more peaceful and less distracting browsing experience. Also useful for avoiding spoilers or inappropriate imagery. Options available: - Temporarily turn off hiding - Blur rather than hide thumbnails - Show thumbnails on hover - Show only solid color - Show thumbnails on search results / playlist / watch / subscriptions / channel pages This extsion could also be descibed as blocking YouTube thumbnails on videos, disabling YouTube thumbnails on videos, blurring YouTube thumbnails on videos. People have found it useful for: - Hiding distracting or inappropriate YouTube thumbnails in class when teaching students - Hiding YouTube thumbnails to reduce distraction and procrastination when studying or working - Hiding YouTube thumbnails to avoid spoilers in the video
एक्सटेंशन की मूल जानकारी
नाम | Hide YouTube Thumbnails |
ID | phmcfcbljjdlomoipaffekhgfnpndbef |
आधिकारिक URL | https://chromewebstore.google.com/detail/hide-youtube-thumbnails/phmcfcbljjdlomoipaffekhgfnpndbef |
विवरण | Hide YouTube Thumbnails for less clickbaity browsing |
फ़ाइल का आकार | 26.04 KB |
स्थापना संख्या | 56,897 |
वर्तमान संस्करण | 2.5.0 |
अंतिम अपडेट | 2023-10-31 |
प्रकाशन तिथि | 2019-04-12 |
रेटिंग | 4.83/5 कुल 83 रेटिंग्स |
डेवलपर | Adam Jones |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/domdomegg/hideytthumbnails-extension |
सहायता पृष्ठ URL | https://github.com/domdomegg/hideytthumbnails-extension/issues |
गोपनीयता नीति पृष्ठ URL | https://adamjones.me/privacy-policies |
समर्थित भाषाएँ | de,en,fr,nl,es,it |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "2.5.0", "name": "__MSG_extName__", "description": "__MSG_extDescription__", "homepage_url": "https:\/\/github.com\/domdomegg\/hideytthumbnails-extension", "browser_specific_settings": { "gecko": { "id": "{17c4514d-71fa-4633-8c07-1fe0b354c885}" }, "gecko_android": [] }, "icons": { "48": "img\/icon48.png", "128": "img\/icon128.png", "512": "img\/icon512.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "common.js", "inject.js" ], "run_at": "document_start" } ], "options_ui": { "page": "options.html", "browser_style": true }, "permissions": [ "storage" ] } |