4 Smart Shortcuts

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

什麼是4 Smart Shortcuts?

4 Smart Shortcuts是由rawbytz開發的Chrome擴展程式,該擴展的主要功能是“Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.”。

擴展截圖

screenshot

下載4 Smart Shortcuts擴展crx文件

下載4 Smart Shortcuts擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 4 Smart Shortcuts 4 Smart Shortcuts
ID fmmofgdcmllajpdnnpllmlffogijffan
官方網址 https://chromewebstore.google.com/detail/4-smart-shortcuts/fmmofgdcmllajpdnnpllmlffogijffan
簡介 Define custom keyboard shortcuts for four favorite sites. Goes to a matching tab first. Creates a new tab if none exist.
檔案大小 12.06 KB
安裝次數 124
目前版本 1.4
更新時間 2018-03-08
上架時間 2018-03-07
評分 5.00/5 共 5 次評分
開發者 rawbytz
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
        }
    }
}