NexTab
Open new tabs to the left or right of your active tab.
什麼是NexTab?
NexTab是由https://nextab.co開發的Chrome擴展程式,該擴展的主要功能是“Open new tabs to the left or right of your active tab.”。
擴展截圖
下載NexTab擴展crx文件
下載NexTab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Ever been frustrated that new tabs open at the end of all your current tabs. Then this is for you. NexTab simply extends the default browser functionality for opening new tabs by opening them next to your current tab, instead of at the end. NexTab comes with two predefined shortcuts out of the box. Or if you'd prefer to customise them, open the popup and follow the link to add your own.
擴展基本資訊
名稱 | NexTab |
ID | okknollmafgigeimghbepomindhjnabj |
官方網址 | https://chromewebstore.google.com/detail/nextab/okknollmafgigeimghbepomindhjnabj |
簡介 | Open new tabs to the left or right of your active tab. |
檔案大小 | 673 KB |
安裝次數 | 113 |
目前版本 | 0.0.3 |
更新時間 | 2020-06-01 |
上架時間 | 2020-06-01 |
評分 | 5.00/5 共 2 次評分 |
開發者 | https://nextab.co |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://nextab.co |
說明頁面URL | https://nextab.co |
隱私政策頁面URL | https://nextab.co |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "NexTab", "description": "Open new tabs to the left or right of your active tab.", "version": "0.0.3", "manifest_version": 2, "icons": { "16": "icons\/16.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_title": "NexTab", "default_popup": "popup\/popup.html" }, "background": { "page": "background.html" }, "commands": { "open-right": { "suggested_key": { "default": "Alt+T", "mac": "Alt+T", "windows": "Alt+T" }, "description": "Opens new tabs to the right of your current tab" }, "open-left": { "suggested_key": { "default": "Alt+Shift+T", "mac": "Alt+Shift+T", "windows": "Alt+Shift+T" }, "description": "Opens new tabs to the left of your current tab" } }, "permissions": [ "tabs" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com\/analytics.js; object-src 'self'" } |