Docs Hotkey

Create hotkeys for Google Docs

Docs Hotkey là gì?

Docs Hotkey là một tiện ích mở rộng Chrome được phát triển bởi Zack Murry, và tính năng chính của nó là "Create hotkeys for Google Docs".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Docs Hotkey

Tải xuống các tệp mở rộng Docs Hotkey dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Docs Hotkey Docs Hotkey
ID npkpplmpfeaeemeecniaikpjjfbfefhh
URL Chính Thức https://chromewebstore.google.com/detail/docs-hotkey/npkpplmpfeaeemeecniaikpjjfbfefhh
Mô tả Create hotkeys for Google Docs
Kích Thước Tệp 785 KB
Số Lần Cài Đặt 2,710
Phiên Bản Hiện Tại 0.14
Cập Nhật Lần Cuối 2024-03-02
Ngày Phát Hành 2022-07-13
Đánh Giá 4.92/5 Tổng số 26 Đánh Giá
Nhà Phát Triển Zack Murry
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://docs-hotkey.zackmurry.com
URL Trang Trợ Giúp https://docs-hotkey.zackmurry.com
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}