Tabsets

Stores sets of tabs for later viewing.

Tabsets là gì?

Tabsets là một tiện ích mở rộng Chrome được phát triển bởi Bernhard Hofmann, và tính năng chính của nó là "Stores sets of tabs for later viewing.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Tabsets

Tải xuống các tệp mở rộng Tabsets 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

                        # Tabsets

This extension lets you keep all the tabs you have open in a set so that you can open them all again later, even on another device, if you have synchronisation enabled in Google Chrome.

A list shows when each set of tabs (a "tabset") was created, and how many tabs there are in each set. This is a great way to organise your various research projects into sets of tabs that you can restore at the click of a tabset link. Each tabset can be expended to see the individual tabs in that tabset, allowing one at a time to be removed. You can also rename the tabset, add the current tab to a tabset, and import or export tabsets as plain text to share with others.

The extension requires permissions so that the title of each tab can be retrieved. This extension does not, and will not, read the contents of your web pages. This can be verified in the source code of the extension, which I have made open source on GitHub:
http://bernhard-hofmann.github.io/Tabsets/

## Version History

Version 1.23:
* Added ability to export all tabsets in one action, as well as auto-detection of import to handle single or multiple tabsets

Version 1.22:
* Removed requirement for unused `contextMenus`, `cookies`, and `notifications` permissions

Version 1.21:
* Added a link for donations.

Version 1.20:
* Sort tabsets by name or creation time.

Version 1.19:
* Save tabsets with local date and time of creation.

Version 1.18:
* Allows the reordering of tabs within each tabset.

Version 1.17:
* Prevents total data loss in the event of storage errors. Also shows errors encountered when storing tabsets.

Version 1.16:
* Improved layout of delete buttons for tabs within tabsets.

Version 1.15:
* Fixed the missing tabset import button.

Version 1.14:
* The rename tabset prompt defaults to the current tabset name.

Version 1.13:
* You can now rename tabsets.

Version 1.12:
* You can now remove individual tabs from a tabset with the delete button beside each tab.

Version 1.11:
* You can now add the current tab to an existing tabset with the plus button beside a tabset.

Version 1.10:
* Expand icon changed in preparation for using the plus icon to add a tab to a tabset.

Version 1.9:
* Basic support added for exporting and importing tabsets via their JSON representation. Being text, it can be copied and pasted in many places where a file might not be suitable.

Version 1.8:
* UI changes to make it more obvious that a tabset can be expanded, and made the name of the tabset the link to open all the tabs in that tabset. Also made delete an image so it's more compact/neater.

Version 1.7:
* Bug fix for event tracking.

Version 1.6:
* If the only open tab is a new tab, it'll be closed when you open a tabset. This makes opening a new window, and then a tabset feel more dedicated to the tabset.

Version 1.5:
* Make it clearer that the tabsets can be clicked to expand the tabs in them, which allows individual tabs to be opened.

Version 1.4:
* Version shown in the heading

Version 1.3:
* Code improvements and usage tracking

Version 1.2:
* Better storage method allows far more tabsets to be saved.
* New UI and icon to make it stand out a little better.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Tabsets Tabsets
ID ifohmndbcefggppiblfofpbkmdfmeing
URL Chính Thức https://chromewebstore.google.com/detail/tabsets/ifohmndbcefggppiblfofpbkmdfmeing
Mô tả Stores sets of tabs for later viewing.
Kích Thước Tệp 55.92 KB
Số Lần Cài Đặt 2,450
Phiên Bản Hiện Tại 1.23
Cập Nhật Lần Cuối 2021-08-09
Ngày Phát Hành 2020-01-26
Đánh Giá 4.55/5 Tổng số 20 Đánh Giá
Nhà Phát Triển Bernhard Hofmann
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://bernhard-hofmann.github.io/Tabsets/
URL Trang Trợ Giúp https://github.com/bernhard-hofmann/Tabsets/issues
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tabsets",
    "version": "1.23",
    "manifest_version": 2,
    "description": "Stores sets of tabs for later viewing.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "browser_action": {
        "default_title": "Tabsets",
        "default_icon": "icon48.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/ssl.google-analytics.com; object-src 'self'"
}