Last active
May 11, 2025 16:37
-
-
Save lunamoth/76cf0b3b245086d29b5d5613d1900959 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": "4.1", | |
"description": "마우스 오른쪽 버튼 제스처로 새 탭, 탭 닫기, 이전/다음 페이지 이동", | |
"permissions": [ | |
"tabs" | |
], | |
"background": { | |
"service_worker": "gestures.js" | |
}, | |
"content_scripts": [ | |
{ | |
"matches": ["<all_urls>"], | |
"js": ["gestures.js"], | |
"run_at": "document_start", | |
"all_frames": true | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment