SameTab - keep only one copy of the tab open
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…
SameTab - keep only one copy of the tab open là gì?
SameTab - keep only one copy of the tab open là một tiện ích mở rộng Chrome được phát triển bởi valentin.alekseev, và tính năng chính của nó là "SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it…".
Tải xuống tệp CRX của tiện ích mở rộng SameTab - keep only one copy of the tab open
Tải xuống các tệp mở rộng SameTab - keep only one copy of the tab open 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
SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it will close the duplicate freeing up some memory and tab space.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | SameTab - keep only one copy of the tab open |
ID | egndhnnhgedkbnkdfjpakgpclhbjcjfb |
URL Chính Thức | https://chromewebstore.google.com/detail/sametab-keep-only-one-cop/egndhnnhgedkbnkdfjpakgpclhbjcjfb |
Mô tả | SameTab is a small extension for Chrome that checks if a newly opened tab is the same to one of already opened. If it finds one it… |
Kích Thước Tệp | 8.9 KB |
Số Lần Cài Đặt | 12 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2016-02-16 |
Ngày Phát Hành | 2016-02-16 |
Đánh Giá | 3.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | valentin.alekseev |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/valentinalexeev/chrome-sametab |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "SameTab - keep only one copy of the tab open", "description": "", "version": "1.1", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "background": { "scripts": [ "index.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "permissions": [ "tabs", "activeTab", "notifications", "storage" ] } |