Focus for Google Docs

Focus helps you enter the writing flow by decluttering Google Docs and adding a pomodoro timer.

Focus for Google Docs क्या है?

Focus for Google Docs https://joelgrayson.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Focus helps you enter the writing flow by decluttering Google Docs and adding a pomodoro timer."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Focus for Google Docs एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Want to enter the writing flow in Google Docs? Focus hides the distracting controls so you can focus just on your text. It includes a pomodoro timer to motivate you to write continuously for a period of time, such as 15 minutes.

-------How to use-------
Start a pomodoro timer by hovering the button in the bottom right and choosing a duration. If you click the button labeled Focus, it will toggle focus mode. Option click the button to toggle full screen.

Right-click the extension icon at the top right of your browser and select "Options" to open a page for configuring the extension's settings.                    

एक्सटेंशन की मूल जानकारी

नाम Focus for Google Docs Focus for Google Docs
ID djnloioaddlnmagobbcnjpppmbelfocf
आधिकारिक URL https://chromewebstore.google.com/detail/focus-for-google-docs/djnloioaddlnmagobbcnjpppmbelfocf
विवरण Focus helps you enter the writing flow by decluttering Google Docs and adding a pomodoro timer.
फ़ाइल का आकार 230 KB
स्थापना संख्या 496
वर्तमान संस्करण 1.3
अंतिम अपडेट 2023-09-27
प्रकाशन तिथि 2023-01-01
रेटिंग 4.50/5 कुल 4 रेटिंग्स
डेवलपर https://joelgrayson.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://joelgrayson.com/software/focus
सहायता पृष्ठ URL https://www.joelgrayson.com/contact
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus for Google Docs",
    "short_name": "Focus",
    "description": "Focus helps you enter the writing flow by decluttering Google Docs and adding a pomodoro timer.",
    "author": "Joel Grayson",
    "version": "1.3",
    "manifest_version": 3,
    "minimum_chrome_version": "102",
    "homepage_url": "https:\/\/joelgrayson.com\/software\/focus",
    "options_page": "options\/index.html",
    "action": {
        "default_icon": "icons\/off-128.png"
    },
    "icons": {
        "16": "icons\/on-16.png",
        "32": "icons\/on-32.png",
        "48": "icons\/on-48.png",
        "128": "icons\/on-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/docs.google.com\/document\/*"
            ],
            "js": [
                "dist\/injected.js"
            ],
            "css": [
                "dist\/pomodoro.css"
            ]
        }
    ],
    "permissions": [
        "background",
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "dist\/background.js"
    }
}