Focuster for Chrome
Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.
Focuster for Chrome क्या है?
Focuster for Chrome http://focuster.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Focuster for Chrome एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Focuster helps professionals and entrepreneurs to better manage their most precious resource - Focus. Learn more and signup at http://focuster.com Focuster Chrome enhances your experience: - Focuster New Tab: Don't let priorities get out of sight. When you open a new tab in Chrome, you will see Focuster. - Quick Capture: Easily capture things you need to do later without losing your flow. Simply press Control-Shift-9 (Windows/Linux) or Command-Shift-9 (Mac) to open Focuster's quick capture window. We love feedback and want to hear yours! E-mail it to [email protected]
एक्सटेंशन की मूल जानकारी
नाम | |
ID | bafpjfpmoemfbpekbjgcfclkcokknpdj |
आधिकारिक URL | https://chrome.google.com/webstore/detail/focuster-for-chrome/bafpjfpmoemfbpekbjgcfclkcokknpdj |
विवरण | Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more. |
फ़ाइल का आकार | 14.77 KB |
स्थापना संख्या | 163 |
वर्तमान संस्करण | 1.0.6 |
अंतिम अपडेट | 2019-11-04 |
प्रकाशन तिथि | 2019-11-04 |
रेटिंग | 4.83/5 कुल 6 रेटिंग्स |
डेवलपर | http://focuster.com |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://www.focuster.com |
सहायता पृष्ठ URL | https://help.focuster.com/ |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Focuster for Chrome", "description": "Focuster is a focus management tool for professionals and entrepreneurs. Get Focuster as your new tab screen and more.", "version": "1.0.6", "icons": { "16": "icon-16.png", "96": "icon-96.png", "144": "icon-144.png" }, "commands": { "quick-capture": { "suggested_key": { "default": "Ctrl+Shift+9", "mac": "Command+Shift+9" }, "description": "Capture ideas quickly in Focuster with a Quick Capture window.", "global": true } }, "browser_action": { "default_icon": { "16": "icon-16.png", "96": "icon-96.png" } }, "content_scripts": [ { "matches": [ "*:\/\/*.focuster.com\/*" ], "js": [ "content.js" ] } ], "background": { "persistent": true, "scripts": [ "background.js" ] }, "chrome_url_overrides": { "newtab": "newtab.html" }, "permissions": [ "tabs" ] } |