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