Last active
April 13, 2025 06:42
-
-
Save lunamoth/c949568022dab046fd0e3d037442cb66 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "manifest_version": 3, | |
| "name": "탭댄스", | |
| "version": "3.2", | |
| "description": "탭 정렬 (alt + A), 중복 탭 제거, 모든 탭 하나의 창으로 (아이콘 클릭)", | |
| "permissions": ["tabs", "windows"], | |
| "background": { | |
| "service_worker": "background.js" | |
| }, | |
| "action": { | |
| "default_icon": { | |
| "128": "icon128.png" | |
| }, | |
| "default_title": "모든 탭을 하나의 창으로 합치기" | |
| }, | |
| "commands": { | |
| "sort-tabs": { | |
| "suggested_key": { | |
| "default": "Alt+A" | |
| }, | |
| "description": "탭을 URL (도메인 및 경로) 순으로 정렬" | |
| } | |
| }, | |
| "icons": { | |
| "128": "icon128.png" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment