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 |
公式URL | 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 |
Eメール | [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." } } } |