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
公式URL 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
Eメール [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"
        }
    }
}