Workspaces
Organize browser tabs into workspaces.
什么是Workspaces?
Workspaces是由Vojtěch Smejkal开发的Chrome扩展程序,该扩展的主要功能是“Organize browser tabs into workspaces.”。
扩展截图
下载Workspaces扩展crx文件
下载Workspaces扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Too many tabs open? Create workspaces, put your tabs in there, and switch between them whenever you need. Workspace automatically saves all your tabs whenever you close the window and restores them once you open it again. You can create a workspace for a particular subject in school, personal project, gift idea, travel plan, or others. Version 0.7 ========= - New option to keep workspaces sorted by name - New option to add new workspaces to the top - Open workspaces are visually marked in the list - Import & Export - Better local files handling - Fixed restoring workspaces in fullscreen mode
扩展基本信息
名称 | Workspaces |
ID | hpljjefgmnkloakbfckghmlapghabgfa |
官方URL | https://chromewebstore.google.com/detail/workspaces/hpljjefgmnkloakbfckghmlapghabgfa |
简介 | Organize browser tabs into workspaces. |
文件大小 | 1006 KB |
安装次数 | 7,004 |
当前版本 | 0.7 |
更新时间 | 2024-02-18 |
上架时间 | 2020-10-09 |
评分 | 4.43/5 共42次评分 |
开发者 | Vojtěch Smejkal |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/vsmejkal/chrome-workspaces |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Workspaces", "version": "0.7", "manifest_version": 3, "description": "Organize browser tabs into workspaces.", "homepage_url": "https:\/\/github.com\/vsmejkal\/chrome-workspaces", "icons": { "16": "src\/icons\/extension\/icon16.png", "32": "src\/icons\/extension\/icon32.png", "48": "src\/icons\/extension\/icon48.png", "128": "src\/icons\/extension\/icon128.png", "256": "src\/icons\/extension\/icon256.png" }, "background": { "service_worker": "src\/background\/serviceWorker.js", "type": "module" }, "options_ui": { "page": "src\/options\/options.html", "open_in_tab": false }, "action": { "default_icon": { "16": "src\/icons\/extension\/icon16.png", "24": "src\/icons\/extension\/icon24.png", "32": "src\/icons\/extension\/icon32.png", "48": "src\/icons\/extension\/icon48.png" }, "default_title": "Workspaces", "default_popup": "src\/popup\/popup.html" }, "permissions": [ "contextMenus", "storage", "tabs", "tabGroups" ], "optional_host_permissions": [ "file:\/\/*\/*" ], "commands": { "_execute_action": { "suggested_key": { "default": "Alt+W" } } } } |