New Window With Tabs To Right
This extension creates a new window with the tabs to the right of the currently selected tab.
什麼是New Window With Tabs To Right?
New Window With Tabs To Right是由https://devalias.net開發的Chrome擴展程式,該擴展的主要功能是“This extension creates a new window with the tabs to the right of the currently selected tab.”。
擴展截圖
下載New Window With Tabs To Right擴展crx文件
下載New Window With Tabs To Right擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
This is a simple little extension that I wanted to make my life a little easier. It lets you create a new window with the tabs to the right (optionally including the current tab) My main reason for wanting this was to more effectively make use of the 'Sesh' extension by Yuji Kosugi when I forgot to open a new window *before* opening a ton of tabs. If you have any comments, criticisms, praise, hatred, marriage proposals, fluffy bunnies, or transdimensional gateway blueprints, feel free to send them through to me at [email protected] (Make sure to mention the extension name in the subject so I know what you're talking about!) This extension is open source and can be found over on GitHub: https://github.com/0xdevalias/chrome-NewWindowWithTabsToRight
擴展基本資訊
名稱 | New Window With Tabs To Right |
ID | ldahcfljppchbfgdokomobmfdfplaman |
官方網址 | https://chromewebstore.google.com/detail/new-window-with-tabs-to-r/ldahcfljppchbfgdokomobmfdfplaman |
簡介 | This extension creates a new window with the tabs to the right of the currently selected tab. |
檔案大小 | 20.51 KB |
安裝次數 | 814 |
目前版本 | 1.0.1 |
更新時間 | 2018-07-14 |
上架時間 | 2018-07-13 |
評分 | 4.73/5 共 15 次評分 |
開發者 | https://devalias.net |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | http://devalias.net/dev/chrome-extensions/new-window-with-tabs-to-right/ |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "New Window With Tabs To Right", "version": "1.0.1", "manifest_version": 2, "description": "This extension creates a new window with the tabs to the right of the currently selected tab.", "homepage_url": "http:\/\/devalias.net\/dev\/chrome-extensions\/", "content_security_policy": "script-src 'self' https:\/\/ssl.google-analytics.com; object-src 'self'", "permissions": [ "tabs", "contextMenus" ], "icons": { "16": "icons\/[email protected]", "48": "icons\/[email protected]", "128": "icons\/[email protected]" }, "default_locale": "en", "background": { "scripts": [ "js\/googleAnalytics.js", "js\/chromeExtensionApiAbstractions.js", "src\/bg\/background.js" ], "persistent": true }, "commands": { "newWindowWithCurrentAndTabsToRight": { "suggested_key": { "default": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" }, "description": "Create a new window with the current tab and tabs on the right." }, "newWindowWithTabsToRight": { "suggested_key": { "default": "Ctrl+Shift+U", "mac": "Command+Shift+U" }, "description": "Create a new window with the tabs on the right." } } } |