PowerTab
Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
什么是PowerTab?
PowerTab是由Insane开发的Chrome扩展程序,该扩展的主要功能是“Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.”。
扩展截图
下载PowerTab扩展crx文件
下载PowerTab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.
扩展基本信息
名称 | PowerTab |
ID | ihfgepigeejhaclnhdgmoinblbcalccc |
官方URL | https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc |
简介 | Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs. |
文件大小 | 20.13 KB |
安装次数 | 34 |
当前版本 | 1.0 |
更新时间 | 2013-09-16 |
上架时间 | 2013-09-16 |
评分 | 5.00/5 共1次评分 |
开发者 | Insane |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "PowerTab", "description": "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.", "version": "1.0", "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*", "contextMenus", "clipboardWrite", "tabs" ], "icons": { "16": "icon16x16.png", "48": "icon48x48.png", "128": "icon128x128.png" }, "browser_action": { "default_icon": "icon16x16.png", "default_popup": "popup.html" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_start" } ] } |