마우스 제스처 크롬 확장 프로그램

마우스 제스처 크롬 확장 프로그램

크롬 브라우저 용 마우스 제스처 확장 프로그램

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "마우스 제스처 크롬 확장 프로그램",
  "version": "0.0.17",
  "description": "크롬 브라우저 용 마우스 제스처 확장 프로그램",
  "action": {
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "icons/mouse_icon16.png",
    "32": "icons/mouse_icon32.png",
    "48": "icons/mouse_icon48.png",
    "128": "icons/mouse_icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content_scripts.js"
      ]
    }
  ],
  "options_page": "options.html",
  "permissions": [
    "storage",
    "sessions",
    "activeTab"
  ],
  "homepage_url": "https://github.com/Seongbeom-Park/mouse_gesture_for_chrome"
}