Focus Dark for Google Docs
Focus is a visual overlay for Google Docs. Made to help you focus while writing.
Focus Dark for Google Docs란 무엇입니까?
Focus Dark for Google Docs은(는) lorenzodelijser에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Focus is a visual overlay for Google Docs. Made to help you focus while writing."입니다.
확장 프로그램 스크린샷
Focus Dark for Google Docs 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Focus Dark for Google Docs helps you write better documents by focusing on what matters most. Bring focus to your writing, distraction free without compromises. This extension provides a dark themed minimal user interface for Google Docs inspired by iA Writer, Dropbox Paper and Ulysses. This extension works best when you disable the "Print Layout" option in "View", this ensures texts will flow as intended, without page breaks. View the source code of this plugin, feel free to contribute, file issues or give feedback: https://github.com/lorenzodelijser/focus-chrome-extension
확장 프로그램 기본 정보
이름 | |
ID | mjlamjhpnimloagnjomjnpbchimkjdlf |
공식 URL | https://chrome.google.com/webstore/detail/focus-dark-for-google-doc/mjlamjhpnimloagnjomjnpbchimkjdlf |
설명 | Focus is a visual overlay for Google Docs. Made to help you focus while writing. |
파일 크기 | 9.43 KB |
설치 횟수 | 193 |
현재 버전 | 1.0.3 |
최근 업데이트 | 2021-08-16 |
출시 날짜 | 2021-08-16 |
평점 | 3.40/5 총 5 개의 평점 |
개발자 | lorenzodelijser |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Focus Dark for Google Docs", "version": "1.0.3", "description": "Focus is a visual overlay for Google Docs. Made to help you focus while writing.", "author": "Lorenzo de Lijser", "permissions": [ "declarativeContent" ], "browser_action": { "default_popup": "popup.html", "default_title": "Focus Dark for Google Docs", "default_icon": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "64": "img\/icon-64.png", "128": "img\/icon-128.png" } }, "icons": { "16": "img\/icon-16.png", "32": "img\/icon-32.png", "64": "img\/icon-64.png", "128": "img\/icon-128.png" }, "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/docs.google.com\/document\/*" ], "css": [ "replace.css" ] } ] } |