Pop out tabs to new window
Click the extension's toolbar button to pop out selected tab(s) to a new window.
什么是Pop out tabs to new window?
Pop out tabs to new window是由Ivan Novikov开发的Chrome扩展程序,该扩展的主要功能是“Click the extension's toolbar button to pop out selected tab(s) to a new window.”。
下载Pop out tabs to new window扩展crx文件
下载Pop out tabs to new window扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Default shortcut: Alt+P. Usually you have just the current tab selected, but Chrome also has built-in functionality to select multiple tabs: — To select specific tabs in a window, click tab handles while holding down Cmd (Mac) or Ctrl (Windows) key. — To select a range of tabs, click tab handles while holding down the Shift key. Source code: https://github.com/ivan7237d/pop-out-tabs
扩展基本信息
名称 | Pop out tabs to new window |
ID | lhnaddgiebpcecbcmfcjmlhinfpkkjii |
官方URL | https://chromewebstore.google.com/detail/pop-out-tabs-to-new-windo/lhnaddgiebpcecbcmfcjmlhinfpkkjii |
简介 | Click the extension's toolbar button to pop out selected tab(s) to a new window. |
文件大小 | 3.38 KB |
安装次数 | 248 |
当前版本 | 1.1 |
更新时间 | 2018-03-14 |
上架时间 | 2018-03-14 |
评分 | 5.00/5 共3次评分 |
开发者 | Ivan Novikov |
付费类型 | free |
扩展官网 | https://twitter.com/ivan7237d |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Pop out tabs to new window", "version": "1.1", "description": "Click the extension's toolbar button to pop out selected tab(s) to a new window.", "manifest_version": 2, "background": { "persistent": true, "scripts": [ "background.js" ] }, "offline_enabled": true, "browser_action": { "default_title": "Pop out tabs to new window" }, "commands": { "popout_action": { "suggested_key": { "default": "Alt+P" }, "description": "Pop out tabs to new window" } } } |