Otli - Distraction Blocker
Hide distracting content while using powerful platforms
Otli - Distraction Blocker क्या है?
Otli - Distraction Blocker https://otli.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Hide distracting content while using powerful platforms"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Otli - Distraction Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
--- Description --- Internet platforms empower users. By design, you stay longer on these platforms then you anticipated. Otli hides distracting features from these platforms to let you focus on what you intended to do. Use Otli to focus on what you intended to do during study, work or leisure time --- Features --- - Hide distracting elements from websites - Quickly disable the distraction blocker to reach the content you need. - Dark Mode compatible - Display custom message on all overlays --- Supported Platforms --- - YouTube: Hide suggested videos and related videos - Facebook: Hide Facebook feed and Stories
एक्सटेंशन की मूल जानकारी
नाम | Otli - Distraction Blocker |
ID | meckchggenmdhalojdfhidehacdhbdmj |
आधिकारिक URL | https://chromewebstore.google.com/detail/otli-distraction-blocker/meckchggenmdhalojdfhidehacdhbdmj |
विवरण | Hide distracting content while using powerful platforms |
फ़ाइल का आकार | 1.18 MB |
स्थापना संख्या | 87 |
वर्तमान संस्करण | 1.9 |
अंतिम अपडेट | 2022-07-25 |
प्रकाशन तिथि | 2020-11-27 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | https://otli.io |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.otli.io |
सहायता पृष्ठ URL | https://www.otli.io |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Otli - Distraction Blocker", "short_name": "Otli", "version": "1.9.1", "version_name": "1.9", "description": "Hide distracting content while using powerful platforms", "author": "Vadim Gouskov", "permissions": [ "storage" ], "host_permissions": [ "https:\/\/*.facebook.com\/*", "https:\/\/*.youtube.com\/*" ], "background": { "service_worker": "js\/background.js" }, "action": { "default_popup": "popup.html", "default_title": "Otli" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "content_scripts": [ { "matches": [ "https:\/\/*.facebook.com\/*", "https:\/\/*.youtube.com\/*" ], "run_at": "document_start", "css": [ "content-style.css" ] }, { "matches": [ "https:\/\/*.facebook.com\/*", "https:\/\/*.youtube.com\/*" ], "run_at": "document_start", "js": [ "js\/content.js" ] } ], "web_accessible_resources": [ { "resources": [ "content-style.css", "popup.css", "options.css" ], "matches": [ "https:\/\/*.facebook.com\/*", "https:\/\/*.youtube.com\/*" ] } ], "icons": { "16": "assets\/otli-logo-icon-16.png", "32": "assets\/otli-logo-icon-32.png", "48": "assets\/otli-logo-icon-48.png", "64": "assets\/otli-logo-icon-64.png", "128": "assets\/otli-logo-icon-128.png" } } |