New Tab Shortcut

Customize chrome shortcut to open a new tab

New Tab Shortcutとは何ですか?

New Tab ShortcutはStanley Guevaraによって開発されたChromeの拡張機能で、その主な機能は「Customize chrome shortcut to open a new tab」です。

New Tab Shortcut拡張機能のCRXファイルをダウンロード

New Tab Shortcut拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Simple extension for opening new tab by keyboard shortcut.

Just go to chrome://extensions scroll down to "Keyboard shortcuts" and set desired keys.                    

拡張機能の基本情報

名前 New Tab Shortcut New Tab Shortcut
ID ahnndmdalhingohpcbkfpipelneigkij
公式URL https://chromewebstore.google.com/detail/new-tab-shortcut/ahnndmdalhingohpcbkfpipelneigkij
説明 Customize chrome shortcut to open a new tab
ファイルサイズ 3.16 KB
インストール数 36
現在のバージョン 1.0
最終更新日 2016-10-16
公開日 2016-10-16
開発者 Stanley Guevara
支払い方法 free
拡張機能のウェブサイト https://github.com/stanleyguevara/chrome-new-tab-shortcut
ヘルプページのURL https://github.com/stanleyguevara/chrome-new-tab-shortcut
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Shortcut",
    "permissions": [
        "tabs"
    ],
    "version": "1.0",
    "description": "Customize chrome shortcut to open a new tab",
    "commands": {
        "close-tab": {
            "suggested_key": {
                "default": "Alt+Z",
                "mac": "Ctrl+Z"
            },
            "description": "Open a new tab"
        }
    },
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}