Time Out : Page Blocker
Blocks sites until you've held the button
Time Out : Page Blocker क्या है?
Time Out : Page Blocker Alex Wright (alexwmw) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Blocks sites until you've held the button"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Time Out : Page Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Time Out: Page Blocker is your go-to Chrome extension for boosting productivity and maintaining focus during your online sessions. Say goodbye to distractions and regain control over your browsing habits. Key Features: ☑️ Tailored Website Blocking: Select and block distracting websites of your choice, ensuring undisturbed focus during work or study sessions. ☑️ User-Controlled Access: Unlike conventional blockers, Time Out introduces a unique approach. When attempting to access a blocked site, the extension prompts users to hold down a button for a set time, enabling a conscious decision before accessing the site. ☑️ Mindful Internet Usage: Encourages users to pause and reflect on their intent to visit a blocked site, fostering mindfulness in online activities. ☑️ Frustration Prevention: Avoids user frustration by offering a flexible approach to website blocking, reducing the urge to disable the extension altogether. ☑️ Improved Self-regulation: By providing the choice to pause and consider whether they genuinely intended to visit a blocked website, users can develop better self-regulation and control over their online habits. ☑️ Scheduling Options: Set specific hours for website blocking, allowing dedicated work or study periods while granting access during specified hours. Empower yourself to take charge of your online focus and productivity with Time Out: Page Blocker. Stay on track, limit distractions, and accomplish more in your browsing sessions.
एक्सटेंशन की मूल जानकारी
नाम | Time Out : Page Blocker |
ID | hoeinipdpcnbifnmdkfbgmpaccbjpinl |
आधिकारिक URL | https://chromewebstore.google.com/detail/time-out-page-blocker/hoeinipdpcnbifnmdkfbgmpaccbjpinl |
विवरण | Blocks sites until you've held the button |
फ़ाइल का आकार | 1.38 MB |
स्थापना संख्या | 252 |
वर्तमान संस्करण | 2.0.1 |
अंतिम अपडेट | 2023-12-01 |
प्रकाशन तिथि | 2021-07-03 |
रेटिंग | 5.00/5 कुल 5 रेटिंग्स |
डेवलपर | Alex Wright (alexwmw) |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2.0.1", "manifest_version": 3, "name": "Time Out : Page Blocker", "description": "Blocks sites until you've held the button", "permissions": [ "storage", "contextMenus", "tabs" ], "action": { "default_icon": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_title": "Time Out : Page Blocker", "default_popup": "index.html" }, "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content.bundle.js" ], "run_at": "document_start" } ], "background": { "service_worker": "background.bundle.js" }, "options_page": "options.html", "web_accessible_resources": [ { "resources": [ "icons\/*", "images\/*", "page-block.html" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ] } ] } |