Custom Shortcuts

Browser keyboard shortcuts to anywhere at anytime

Vad är Custom Shortcuts?

Custom Shortcuts är en Chrome-tillägg utvecklad av Hango Ventures, LLC, och dess huvudfunktion är "Browser keyboard shortcuts to anywhere at anytime".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Custom Shortcuts-förlängningens CRX-fil

Ladda ner Custom Shortcuts-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        To get started, reload the browser and then press ⌘ + ⇧ + L on a Mac or CTRL + ⇧ + L on a Windows PC.

Create customized keyboard shortcuts that enable you to keep your hands on the keyboard and away from the mouse.  We are excited about this app and how it can make people more productive.  Please let us know your feedback!

Features:
- Easy to customize, simple layout for creating your shortcuts
- Create three custom global hotkeys for Chrome that help you navigate to urls while in the browser
- Create up to 26 customer sidebar shortcuts that help you quickly navigate to your most used pages
- Quickly move focus back to important tabs by using the shortcut for the URL you'd like to move to
- Provides a reference for Google Chrome Shortcuts.  

Email me lucas@hangoventures for ideas, comments, feedback.

v0.0.1 - initial upload
v0.0.2 - added customization / settings page to define hotkey shortcuts
v0.0.3 - improvements to user experience
v0.0.4 - bug fixes, added options in settings page to show / not show sections, UX improvements
v0.0.5 (20200213) - bug fixes, UI enhancements
v0.0.6 (20200222) - bug fixes, UI enhancements
v0.0.7 (20200225) - quickly add Sidebar Shortcut, added Google Analytics support
v0.1.0. (20220113) - add ability to save shortcuts to cloud                    

Grundläggande Information om Tillägg

Namn Custom Shortcuts Custom Shortcuts
ID bomleickifcdlcdonchhdcgkajlnmkmk
Officiell webbadress https://chrome.google.com/webstore/detail/custom-shortcuts/bomleickifcdlcdonchhdcgkajlnmkmk
Beskrivning Browser keyboard shortcuts to anywhere at anytime
Filstorlek 799 KB
Antal Installationer 115
Aktuell Version 0.1.01
Senast Uppdaterad 2022-01-16
Publiceringsdatum 2020-02-25
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Hango Ventures, LLC
E-post [email protected]
Betalningssätt free
Stödda Språk en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.01",
    "name": "Custom Shortcuts",
    "manifest_version": 3,
    "description": "Browser keyboard shortcuts to anywhere at anytime",
    "icons": {
        "128": "img\/icon-128.png"
    },
    "oauth2": {
        "client_id": "1007336827109-a56thooaajsmcmnmt9kug23uaf8nte6p.apps.googleusercontent.com",
        "scopes": [
            "https:\/\/www.googleapis.com\/auth\/userinfo.email"
        ]
    },
    "action": [],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject.html",
                "\/fonts\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "commands": {
        "toggle-extension": {
            "suggested_key": {
                "default": "Ctrl+Shift+L",
                "mac": "Command+Shift+L"
            },
            "description": "Toggle Extension"
        },
        "open-email": {
            "suggested_key": {
                "default": "Ctrl+E",
                "mac": "Command+E"
            },
            "description": "Open Email"
        },
        "open-calendar": {
            "suggested_key": {
                "default": "Ctrl+Shift+E",
                "mac": "Command+Shift+E"
            },
            "description": "Open Calendar"
        },
        "open-mailto": {
            "suggested_key": {
                "default": "Alt+J",
                "mac": "Command+J"
            },
            "description": "Open Mailto"
        }
    },
    "permissions": [
        "contextMenus",
        "storage",
        "activeTab",
        "tabs",
        "scripting",
        "identity"
    ]
}