PowerTab
Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.
PowerTab là gì?
PowerTab là một tiện ích mở rộng Chrome được phát triển bởi Insane, và tính năng chính của nó là "Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PowerTab
Tải xuống các tệp mở rộng PowerTab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Power tab extends the default chrome tab-support allowing among other things close tabs to the left, duplicate tab and background tabs.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PowerTab |
ID | ihfgepigeejhaclnhdgmoinblbcalccc |
URL Chính Thức | https://chromewebstore.google.com/detail/powertab/ihfgepigeejhaclnhdgmoinblbcalccc |
Mô tả | Extend the default chrome tab support allowing among other things close tabs to the left, duplicate tab, background tabs. |
Kích Thước Tệp | 20.13 KB |
Số Lần Cài Đặt | 34 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2013-09-16 |
Ngày Phát Hành | 2013-09-16 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Insane |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |