simpleGestures

simpleGestures

設定画面・使い勝手のシンプルさにこだわったマウスジェスチャの拡張機能です。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "simpleGestures",
  "version": "1.6.3",
  "manifest_version": 3,
  "description": "設定画面・使い勝手のシンプルさにこだわったマウスジェスチャの拡張機能です。",
  "icons": {
    "16": "img/icon_16.png",
    "32": "img/icon_32.png",
    "48": "img/icon_48.png",
    "64": "img/icon_64.png",
    "128": "img/icon_128.png",
    "256": "img/icon_256.png",
    "512": "img/icon_512.png"
  },
  "permissions": [
    "tabs",
    "sessions",
    "storage"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "font/flaticon.css"
      ],
      "js": [
        "handler.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "font/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "options_page": "options_page/options_page.html"
}