Tabsets

Stores sets of tabs for later viewing.

什麼是Tabsets?

Tabsets是由Bernhard Hofmann開發的Chrome擴展程式,該擴展的主要功能是“Stores sets of tabs for later viewing.”。

擴展截圖

screenshot

下載Tabsets擴展crx文件

下載Tabsets擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        # 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.                    

擴展基本資訊

名稱 Tabsets Tabsets
ID ifohmndbcefggppiblfofpbkmdfmeing
官方網址 https://chromewebstore.google.com/detail/tabsets/ifohmndbcefggppiblfofpbkmdfmeing
簡介 Stores sets of tabs for later viewing.
檔案大小 55.92 KB
安裝次數 2,450
目前版本 1.23
更新時間 2021-08-09
上架時間 2020-01-26
評分 4.55/5 共 20 次評分
開發者 Bernhard Hofmann
電子郵箱 [email protected]
付費類型 free
擴展官網 http://bernhard-hofmann.github.io/Tabsets/
說明頁面URL https://github.com/bernhard-hofmann/Tabsets/issues
支援的語言 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'"
}