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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://joelgrayson.com, και η κύρια λειτουργία του είναι "Focus helps you enter the writing flow by decluttering Google Docs and adding a pomodoro timer.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Focus for Google Docs

Λήψη αρχείων επέκτασης Focus for Google Docs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    }
}