Skip to content

Instantly share code, notes, and snippets.

@lunamoth
Last active May 11, 2025 16:37
Show Gist options
  • Save lunamoth/76cf0b3b245086d29b5d5613d1900959 to your computer and use it in GitHub Desktop.
Save lunamoth/76cf0b3b245086d29b5d5613d1900959 to your computer and use it in GitHub Desktop.
{
"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