Hide Youtube Watched Videos
This extension will hide watched youtube videos from the subscriptions page.
Hide Youtube Watched Videos क्या है?
Hide Youtube Watched Videos Matt0x5b द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension will hide watched youtube videos from the subscriptions page."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Hide Youtube Watched Videos एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Sick of finding which videos you haven't already watched within your subscription feed? This extension will automatically hide watched videos so you can focus on enjoying the new content. Right click the extension icon for options: this can be used to adjust how much of the video must be watched before it is considered "Watched". Note: Red Icon means the extension is disabled, Green is enabled. Click the icon to enable/disable.
एक्सटेंशन की मूल जानकारी
नाम | Hide Youtube Watched Videos |
ID | ekcdnnkolgkikkhbbjcabcjdibfbafbl |
आधिकारिक URL | https://chromewebstore.google.com/detail/hide-youtube-watched-vide/ekcdnnkolgkikkhbbjcabcjdibfbafbl |
विवरण | This extension will hide watched youtube videos from the subscriptions page. |
फ़ाइल का आकार | 162 KB |
स्थापना संख्या | 2,741 |
वर्तमान संस्करण | 1.7.1 |
अंतिम अपडेट | 2023-08-28 |
प्रकाशन तिथि | 2020-03-11 |
रेटिंग | 3.20/5 कुल 50 रेटिंग्स |
डेवलपर | Matt0x5b |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://github.com/matt0x5B/HideYoutubeWatchedVideos-Issues |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Hide Youtube Watched Videos", "description": "This extension will hide watched youtube videos from the subscriptions page.", "version": "1.7.1", "action": { "default_icon": "images\/icon128.png" }, "icons": { "16": "images\/icon16.png", "32": "images\/icon32.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_page": "src\/options.html", "background": { "service_worker": "script.js" }, "permissions": [ "scripting", "storage", "tabs", "webNavigation" ], "host_permissions": [ "*:\/\/*.youtube.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "css": [ "src\/hideYoutube.css" ] } ] } |