Tabsets
Stores sets of tabs for later viewing.
什么是Tabsets?
Tabsets是由Bernhard Hofmann开发的Chrome扩展程序,该扩展的主要功能是“Stores sets of tabs for later viewing.”。
扩展截图
下载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 |
ID | ifohmndbcefggppiblfofpbkmdfmeing |
官方URL | 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'" } |