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开发的Chrome扩展程序,该扩展的主要功能是“Focus helps you enter the writing flow by decluttering Google Docs and adding a pomodoro timer.”。

扩展截图

screenshot
screenshot
screenshot

下载Focus for Google Docs扩展crx文件

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