Docs Hotkey

Create hotkeys for Google Docs

Qu'est-ce que Docs Hotkey ?

Docs Hotkey est une extension Chrome développée par Zack Murry, et sa fonction principale est "Create hotkeys for Google Docs".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Docs Hotkey

Téléchargez les fichiers d'extension Docs Hotkey au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Docs Hotkey Docs Hotkey
ID npkpplmpfeaeemeecniaikpjjfbfefhh
URL Officiel https://chromewebstore.google.com/detail/docs-hotkey/npkpplmpfeaeemeecniaikpjjfbfefhh
Description Create hotkeys for Google Docs
Taille du Fichier 785 KB
Nombre d'Installations 2,710
Version Actuelle 0.14
Dernière Mise à Jour 2024-03-02
Date de Publication 2022-07-13
Évaluation 4.92/5 Total 26 Évaluations
Développeur Zack Murry
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://docs-hotkey.zackmurry.com
URL de la Page d'Aide https://docs-hotkey.zackmurry.com
Langues Prises en Charge 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"
    }
}