4 Smart Shortcuts

Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.

Was ist 4 Smart Shortcuts?

4 Smart Shortcuts ist eine Chrome-Erweiterung, die von rawbytz entwickelt wurde, und ihr Hauptmerkmal ist "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.".

Erweiterungsscreenshots

screenshot

4 Smart Shortcuts-Erweiterungs-CRX-Datei herunterladen

Laden Sie 4 Smart Shortcuts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        • 'Smart' keyboard shortcuts won't duplicate existing tabs.
• Great for fullscreen.
• Support for "chrome://" system shortcuts like, chrome://extensions & chrome://apps
• Goes to existing tabs based on a "starts with" matching pattern. 
EXAMPLES:
• Shortcut: https://www.google.com goes to the existing tab https://www.google.com/contacts
• Shortcut: https://www.google.com/contacts does NOT go to the existing tab https://www.google.com                    

Grundlegende Informationen zur Erweiterung

Name 4 Smart Shortcuts 4 Smart Shortcuts
ID fmmofgdcmllajpdnnpllmlffogijffan
Offizielle URL https://chromewebstore.google.com/detail/4-smart-shortcuts/fmmofgdcmllajpdnnpllmlffogijffan
Beschreibung Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.
Dateigröße 12.06 KB
Installationsanzahl 124
Aktuelle Version 1.4
Letztes Update 2018-03-08
Veröffentlichungsdatum 2018-03-07
Bewertung 5.00/5 Insgesamt 5 Bewertungen
Entwickler rawbytz
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "4 Smart Shortcuts",
    "version": "1.4",
    "description": "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.",
    "manifest_version": 2,
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "128": "4SS_128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "commands": {
        "site1": {
            "description": "Launch Site 1"
        },
        "site2": {
            "description": "Launch Site 2"
        },
        "site3": {
            "description": "Launch Site 3"
        },
        "site4": {
            "description": "Launch Site 4"
        }
    }
}