Youtube Distraction Filter
Remove distracting elements from youtube
Youtube Distraction Filter क्या है?
Youtube Distraction Filter Tom Headifen द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Remove distracting elements from youtube"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube Distraction Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This Chrome extension by default will remove the comment section and related video section whenever you are watching a video. This helps users not get distracted by participating in pointless conversation or getting fooled by click bait videos. Known bugs: -If you navigate to a video from within the youtube website the filter will not kick in. It will only work if you navigate straight to the video from a different website/link. Change Log: September 4th 2017: -Youtube recently had an update, changed fields names that are targeted to be filtered to keep up with these changes. August 5th 2019 -Fixed bug where related videos wouldn't hide.
एक्सटेंशन की मूल जानकारी
नाम | Youtube Distraction Filter |
ID | bcbpflcbmnnpdhjmfblndddmoimlimbf |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-distraction-filte/bcbpflcbmnnpdhjmfblndddmoimlimbf |
विवरण | Remove distracting elements from youtube |
फ़ाइल का आकार | 7.3 KB |
स्थापना संख्या | 99 |
वर्तमान संस्करण | 1.0.2 |
अंतिम अपडेट | 2019-08-06 |
प्रकाशन तिथि | 2019-08-05 |
रेटिंग | 5.00/5 कुल 1 रेटिंग्स |
डेवलपर | Tom Headifen |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/tomheadifen/youtube-distraction-filter |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube Distraction Filter", "description": "Remove distracting elements from youtube", "version": "1.0.2", "background": { "scripts": [ "background.js" ], "persistent": false }, "page_action": { "default_icon": "eye-icon.png", "default_title": "Youtube Distraction Filter", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "youtube-distraction-filter.js" ], "run_at": "document_end" } ], "permissions": [ "declarativeContent", "storage" ] } |