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.
擴展基本資訊
名稱 | |
ID | ahnndmdalhingohpcbkfpipelneigkij |
官方網址 | 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 } } |