4 Smart Shortcuts

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

What is 4 Smart Shortcuts?

4 Smart Shortcuts is a Chrome extension developed by rawbytz, and its main feature is "Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.".

Extension Screenshots

screenshot

Download 4 Smart Shortcuts Extension CRX File

Download 4 Smart Shortcuts extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name 4 Smart Shortcuts 4 Smart Shortcuts
ID fmmofgdcmllajpdnnpllmlffogijffan
Official URL 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.
File Size 12.06 KB
Installation Count 124
Current Version 1.4
Last Updated 2018-03-08
Publish Date 2018-03-07
Rating 5.00/5 Total 5 Ratings
Developer rawbytz
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    }
}