Focus Meter
Tracks focus and break times and blocks distracting sites when you're meant to focus.
Focus Meter क्या है?
Focus Meter felixpitau द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tracks focus and break times and blocks distracting sites when you're meant to focus."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Focus Meter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This app helps to assist people who have difficulty focusing because they're getting distracted online. Set a blacklist of distracting sites, set starting and ending work times for the blocking to take effect and specify how much focus time earns you a break now and then.
एक्सटेंशन की मूल जानकारी
नाम | Focus Meter |
ID | hepedehopmkmfdnlgogmmfkkmjflkkia |
आधिकारिक URL | https://chromewebstore.google.com/detail/focus-meter/hepedehopmkmfdnlgogmmfkkmjflkkia |
विवरण | Tracks focus and break times and blocks distracting sites when you're meant to focus. |
फ़ाइल का आकार | 81.51 KB |
स्थापना संख्या | 73 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2018-01-12 |
प्रकाशन तिथि | 2018-01-11 |
डेवलपर | felixpitau |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focus Meter", "short_name": "Focus Meter", "description": "Tracks focus and break times and blocks distracting sites when you're meant to focus.", "version": "1.1", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "options_page": "options.html", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "block.css" ], "js": [ "block.js" ] } ], "permissions": [ "activeTab", "storage", "alarms", "notifications" ], "icons": { "16": "icon-16.png", "32": "icon-32.png", "48": "icon-48.png", "128": "icon-128.png" } } |