YouFocus - YouTube Filter
A filter for YouTube videos.
YouFocus - YouTube Filter क्या है?
YouFocus - YouTube Filter Practimake द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A filter for YouTube videos."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में YouFocus - YouTube Filter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Now you can filter your recommended YouTube videos based on the words in the title and channel name! Stop the distractions and 2am YouTube sessions and focus on the videos that matter to you.
एक्सटेंशन की मूल जानकारी
नाम | YouFocus - YouTube Filter |
ID | nlokjknlncdcjohkpclkbeofefnmjaad |
आधिकारिक URL | https://chromewebstore.google.com/detail/youfocus-youtube-filter/nlokjknlncdcjohkpclkbeofefnmjaad |
विवरण | A filter for YouTube videos. |
फ़ाइल का आकार | 729 KB |
स्थापना संख्या | 230 |
वर्तमान संस्करण | 1.0.1 |
अंतिम अपडेट | 2020-07-17 |
प्रकाशन तिथि | 2020-07-15 |
रेटिंग | 4.80/5 कुल 5 रेटिंग्स |
डेवलपर | Practimake |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouFocus - YouTube Filter", "description": "A filter for YouTube videos.", "version": "1.0.1", "icons": { "128": "funnelV2.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/*.youtube.com\/*" ], "js": [ "utils.js", "content.js" ] } ], "background": { "scripts": [ "utils.js", "background.js" ] }, "page_action": { "default_icon": "funnelV2.png" }, "options_page": "options.html", "permissions": [ "storage", "declarativeContent" ] } |