New Window Tab
Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)
New Window Tabとは何ですか?
New Window TabはAshkanによって開発されたChromeの拡張機能で、その主な機能は「Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)」です。
拡張機能のスクリーンショット
New Window Tab拡張機能のCRXファイルをダウンロード
New Window Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A chrome extension that fills a simple need. It creates a keyboard shortcut (Alt+Shift+W by default) which pops out the current tab into a new window. It automatically chooses the window location using chrome's suggestion for a "natural" offset (about 10 pixels offset from parent's top and left). It keeps the same window size as the parent window. 拡張機能の基本情報
| 名前 | |
| ID | likdgnpafjdanfaaoendcmkkpefbfiel |
| 公式URL | https://chrome.google.com/webstore/detail/new-window-tab/likdgnpafjdanfaaoendcmkkpefbfiel |
| 説明 | Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W) |
| ファイルサイズ | 581 KB |
| インストール数 | 25 |
| 現在のバージョン | 1.0.0 |
| 最終更新日 | 2014-12-14 |
| 公開日 | 2014-12-14 |
| 開発者 | Ashkan |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/norcalli/newtabwindow |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "New Window Tab",
"description": "Keyboard shortcut for putting the current tab into a new window (default Alt+Shift+W)",
"version": "1.0.0",
"manifest_version": 2,
"minimum_chrome_version": "19",
"icons": {
"16": "icons\/win16.png",
"48": "icons\/win48.png",
"128": "icons\/win128.png"
},
"background": {
"scripts": [
"js\/hook.js"
],
"persistent": false
},
"commands": {
"toggle-feature": {
"suggested_key": {
"default": "Alt+Shift+W"
},
"description": "Open current tab in new window"
}
},
"permissions": [
"tabs"
]
} | |