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"
]
} | |