Tab Uncloser
Restore your closed tabs easily
Tab Uncloser là gì?
Tab Uncloser là một tiện ích mở rộng Chrome được phát triển bởi Carl Kibler, và tính năng chính của nó là "Restore your closed tabs easily".
Tải xuống tệp CRX của tiện ích mở rộng Tab Uncloser
Tải xuống các tệp mở rộng Tab Uncloser 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
Easily re-open your closed tabs, from seconds ago to months ago. Closed tabs are shown in a dropdown for quick access to recent items, but you can search the full history. You can clear the tab history at any time with a single click as well to preserve privacy or clear out old data. Privacy: This extension sends zero tracking information to the author, ad sites, or anywhere else. All data is stored locally in your browser. -- This extension is a fork of Sexy Undo Close Tabs, a great extension the author has abandoned. In current form it is nearly identical to the old extension but with ads insertion removed.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Tab Uncloser |
ID | pdlkkmdnpkmgilgfenkjlmcamigelfmb |
URL Chính Thức | https://chromewebstore.google.com/detail/tab-uncloser/pdlkkmdnpkmgilgfenkjlmcamigelfmb |
Mô tả | Restore your closed tabs easily |
Kích Thước Tệp | 41.07 KB |
Số Lần Cài Đặt | 537 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2016-06-14 |
Ngày Phát Hành | 2016-06-13 |
Đánh Giá | 4.82/5 Tổng số 11 Đánh Giá |
Nhà Phát Triển | Carl Kibler |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "background": { "page": "background.html" }, "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Undo closed tabs" }, "content_scripts": [ { "all_frames": true, "js": [ "js\/content.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start" } ], "description": "Restore your closed tabs easily", "icons": { "128": "icon-128.png", "48": "icon.png" }, "manifest_version": 2, "name": "Tab Uncloser", "options_page": "options.html", "permissions": [ "tabs", "unlimitedStorage", "chrome:\/\/favicon\/", "webNavigation", "webRequest", "webRequestBlocking", "http:\/\/*\/*", "https:\/\/*\/*" ], "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "1.0", "web_accessible_resources": [ "blank.html" ] } |