Feed Cleanup for YouTube™
Collapses or hides watched videos within a YouTube feed.
Feed Cleanup for YouTube™ क्या है?
Feed Cleanup for YouTube™ Armandas Jarušauskas द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Collapses or hides watched videos within a YouTube feed."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Feed Cleanup for YouTube™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension checks your YouTube feed page and collapses or hides all the watched entries, allowing you to focus only on new videos. IMPORTANT: if you experience any problems, please contact me via "Send Feedback" link in "Details" tab. Reviews are not meant for reporting bugs! Thanks. Changelog: 2022-02-06 - Fixed element access errors. 2017-09-01 - Updating the code to work with the latest YouTube design. 2016-11-24 - Detection mechanism changed to use the new "progress bar". 2015-04-11 - Updating the code to work with the latest version of YouTube. 2015-01-16 - Adding the "by" line to the clutter list. 2014-08-25 - Some small changes to match the updated subscriptions page. 2014-04-21 - Adding functionality for hiding the watched videos. 2014-03-27 - Updating the extension to support HTTPS. 2013-08-22 - Adding functionality for cleaning-up additionally loaded feed items. - Updating the list of elements to be hidden. 2013-08-21 - Updating the extension to work with the latest YouTube design.
एक्सटेंशन की मूल जानकारी
नाम | Feed Cleanup for YouTube™ |
ID | jdhiaadoiejmfdpfankpionkocihfbcn |
आधिकारिक URL | https://chromewebstore.google.com/detail/feed-cleanup-for-youtube/jdhiaadoiejmfdpfankpionkocihfbcn |
विवरण | Collapses or hides watched videos within a YouTube feed. |
फ़ाइल का आकार | 223 KB |
स्थापना संख्या | 248 |
वर्तमान संस्करण | 0.5.2 |
अंतिम अपडेट | 2022-02-06 |
प्रकाशन तिथि | 2017-09-01 |
रेटिंग | 3.00/5 कुल 13 रेटिंग्स |
डेवलपर | Armandas Jarušauskas |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/armandas/YouTube-Feed-Cleanup |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Feed Cleanup for YouTube\u2122", "description": "Collapses or hides watched videos within a YouTube feed.", "version": "0.5.2", "icons": { "128": "yfc_128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/feed\/subscriptions" ], "js": [ "yfc.js" ] } ], "page_action": { "default_icon": "yfc_19.png", "default_title": "Feed Cleanup", "default_popup": "yfc_popup.html" }, "permissions": [ "storage" ] } |