Workspaces
Organize browser tabs into workspaces.
Workspaces란 무엇입니까?
Workspaces은(는) Vojtěch Smejkal에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Organize browser tabs into workspaces."입니다.
확장 프로그램 스크린샷
Workspaces 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } } } |