牌効率計算ツール

牌効率計算ツール

あなたの麻雀をサポートします

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "牌効率計算ツール",
  "version": "1.0.1",
  "manifest_version": 2,
  "description": "あなたの麻雀をサポートします",
  "browser_action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "storage",
    "commands"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://nnkr.jp/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "commands": {
    "shortcut": {
      "suggested_key": {
        "default": "Ctrl+Shift+K",
        "mac": "Command+Shift+K"
      },
      "global": true,
      "description": "open tenho tool"
    }
  }
}