Docs Hotkey
Create hotkeys for Google Docs
Docs Hotkey란 무엇입니까?
Docs Hotkey은(는) Zack Murry에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create hotkeys for Google Docs"입니다.
확장 프로그램 스크린샷
Docs Hotkey 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Docs Hotkey allows for complex hotkey setups with simple configuration. Hotkeys can be set up to do the following: - Highlight in any color - Bold - Underline - Italicize - Change text color - Change fonts - Change font size - Set heading type (e.g., Heading 1, Normal Text, Title) - Change alignment and indentation - Add emoji reactions - Clear all styles (and remove specific styles) - Execute add-ons A single hotkey can be configured to do several of these at once. Docs Hotkey was originally created solely for the addition of a highlight shortcut, but it has since expanded to many others. If you need a shortcut for something that is not available, feel free to contact me. This extension also works for the teacher view of assignments in Google Classroom. Documentation: https://docs-hotkey.zackmurry.com
확장 프로그램 기본 정보
이름 | Docs Hotkey |
ID | npkpplmpfeaeemeecniaikpjjfbfefhh |
공식 URL | https://chromewebstore.google.com/detail/docs-hotkey/npkpplmpfeaeemeecniaikpjjfbfefhh |
설명 | Create hotkeys for Google Docs |
파일 크기 | 785 KB |
설치 횟수 | 2,710 |
현재 버전 | 0.14 |
최근 업데이트 | 2024-03-02 |
출시 날짜 | 2022-07-13 |
평점 | 4.92/5 총 26 개의 평점 |
개발자 | Zack Murry |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://docs-hotkey.zackmurry.com |
도움말 페이지 URL | https://docs-hotkey.zackmurry.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Docs Hotkey", "version": "0.14", "description": "Create hotkeys for Google Docs", "permissions": [ "storage" ], "background": { "service_worker": "static\/js\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/document\/d\/*", "*:\/\/classroom.google.com\/*" ], "all_frames": true, "js": [ "static\/js\/content.js" ] } ], "commands": { "slot1": { "suggested_key": { "default": "Ctrl+Shift+H" }, "description": "Slot 1" }, "slot2": { "description": "Slot 2" }, "slot3": { "description": "Slot 3" }, "slot4": { "description": "Slot 4" }, "slot5": { "description": "Slot 5" }, "slot6": { "description": "Slot 6" }, "slot7": { "description": "Slot 7" }, "slot8": { "description": "Slot 8" }, "slot9": { "description": "Slot 9" } }, "action": { "default_title": "Open popup", "default_popup": "index.html" }, "manifest_version": 3, "icons": { "128": "icons\/128.png", "64": "icons\/64.png", "32": "icons\/32.png", "16": "icons\/16.png" } } |