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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    }
}