Docs Hotkey

Create hotkeys for Google Docs

Docs Hotkey क्या है?

Docs Hotkey Zack Murry द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Create hotkeys for Google Docs"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Docs Hotkey एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
    }
}