Open New Tab Here
A shortcut to open a new tab next to the current one
什麼是Open New Tab Here?
Open New Tab Here是由Gilmore Davidson開發的Chrome擴展程式,該擴展的主要功能是“A shortcut to open a new tab next to the current one”。
擴展截圖
下載Open New Tab Here擴展crx文件
下載Open New Tab Here擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
By default, Chrome will only open a new tab at the very end of the row of tabs, which isn’t always what you want. This is a quick shortcut to open a new tab to the right of the one you’re currently viewing.
You can either use the button to the right of the address bar, or a configurable keyboard shortcut. The default keyboard shortcut is:
• For Windows & Linux: Alt + T
• For macOS: Ctrl + T
There is also a shortcut to open the new tab in the background instead of switching to it straight away:
• For Windows & Linux: Alt + Shift + T
• For macOS: Ctrl + Shift + T
You can change these shortcuts by going to chrome://extensions/shortcuts
The code is open source at https://github.com/gilmoreorless/chrome-new-tab-here 擴展基本資訊
| 名稱 | |
| ID | kpoogeanhkgkbkagbgeibbokbjdbjodb |
| 官方網址 | https://chromewebstore.google.com/detail/open-new-tab-here/kpoogeanhkgkbkagbgeibbokbjdbjodb |
| 簡介 | A shortcut to open a new tab next to the current one |
| 檔案大小 | 15.7 KB |
| 安裝次數 | 688 |
| 目前版本 | 1.1.0 |
| 更新時間 | 2021-04-14 |
| 上架時間 | 2017-07-11 |
| 評分 | 4.76/5 共 21 次評分 |
| 開發者 | Gilmore Davidson |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/gilmoreorless/chrome-new-tab-here |
| 說明頁面URL | https://github.com/gilmoreorless/chrome-new-tab-here/issues |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Open New Tab Here",
"short_name": "New Tab Here",
"version": "1.1.0",
"description": "A shortcut to open a new tab next to the current one",
"manifest_version": 2,
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"64": "icons\/icon-64.png",
"96": "icons\/icon-96.png",
"128": "icons\/icon-128.png"
},
"background": {
"scripts": [
"listener.js"
]
},
"browser_action": {
"default_title": "Open a new tab next to the current one"
},
"commands": {
"new-tab-here": {
"suggested_key": {
"default": "Alt+T",
"mac": "MacCtrl+T"
},
"description": "Open a new tab next to the current one"
},
"new-tab-here-background": {
"suggested_key": {
"default": "Alt+Shift+T",
"mac": "MacCtrl+Shift+T"
},
"description": "Open a new tab in the background next to the current one"
}
}
} | |