Docs Hotkey

Create hotkeys for Google Docs

什么是Docs Hotkey?

Docs Hotkey是由Zack Murry开发的Chrome扩展程序,该扩展的主要功能是“Create hotkeys for Google Docs”。

扩展截图

screenshot
screenshot
screenshot

下载Docs Hotkey扩展crx文件

下载Docs Hotkey扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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