4 Smart Shortcuts

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

Qu'est-ce que 4 Smart Shortcuts ?

4 Smart Shortcuts est une extension Chrome développée par rawbytz, et sa fonction principale est "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension 4 Smart Shortcuts

Téléchargez les fichiers d'extension 4 Smart Shortcuts 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

                        • '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                    

Informations de Base sur l'Extension

Nom 4 Smart Shortcuts 4 Smart Shortcuts
ID fmmofgdcmllajpdnnpllmlffogijffan
URL Officiel https://chromewebstore.google.com/detail/4-smart-shortcuts/fmmofgdcmllajpdnnpllmlffogijffan
Description Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.
Taille du Fichier 12.06 KB
Nombre d'Installations 124
Version Actuelle 1.4
Dernière Mise à Jour 2018-03-08
Date de Publication 2018-03-07
Évaluation 5.00/5 Total 5 Évaluations
Développeur rawbytz
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
        }
    }
}