Youtube focus
Blocks Youtube recommendations so that you see only what you search.
Youtube focus क्या है?
Youtube focus Priyanshu Nayan द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blocks Youtube recommendations so that you see only what you search."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Youtube focus एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension removes all the recommended videos that you click to waste time, also it removes comments which i s not productive and also removes autoplay which makes you stick to the site and keep binge watching. Just search the videos you necessarily want to watch and that's it. That's what youtube was built for, that's what youtube should be used for.
एक्सटेंशन की मूल जानकारी
नाम | Youtube focus |
ID | elnjcclakbcdhbljljckfokbpmcicemo |
आधिकारिक URL | https://chromewebstore.google.com/detail/youtube-focus/elnjcclakbcdhbljljckfokbpmcicemo |
विवरण | Blocks Youtube recommendations so that you see only what you search. |
फ़ाइल का आकार | 10.62 KB |
स्थापना संख्या | 40 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2020-04-08 |
प्रकाशन तिथि | 2020-04-08 |
रेटिंग | 4.00/5 कुल 4 रेटिंग्स |
डेवलपर | Priyanshu Nayan |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/priyanshunayan/youtube-focus |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Youtube focus", "version": "1.0.1", "description": "Blocks Youtube recommendations so that you see only what you search.", "background": { "scripts": [ "background.js" ], "permissions": [ "storage", "tabs", "declarativeContent" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/", "*:\/\/youtube.com\/", "*:\/\/youtube.com\/watch*", "*:\/\/www.youtube.com\/watch*" ], "js": [ "content.js" ] } ], "page_action": { "default_popup": "popup.html" }, "default_icon": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "icons": { "16": "images\/get_started16.png", "32": "images\/get_started32.png", "48": "images\/get_started48.png", "128": "images\/get_started128.png" }, "manifest_version": 2 } |