艦これウィジェット

艦これウィジェット

「艦これ」をほどよく快適にたのしく遊べるようにするやつです

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "艦これウィジェット",
  "version": "3.2.81",
  "version_name": "3.2.81",
  "description": "「艦これ」をほどよく快適にたのしく遊べるようにするやつです",
  "permissions": [
    "tabs",
    "storage",
    "downloads",
    "downloads.shelf",
    "<all_urls>",
    "webRequest",
    "notifications",
    "unlimitedStorage"
  ],
  "icons": {
    "16": "dest/img/app/icon.16.png",
    "48": "dest/img/app/icon.48.png",
    "128": "dest/img/app/icon.128.png"
  },
  "background": {
    "scripts": [
      "dest/js/background.js"
    ]
  },
  "browser_action": {
    "default_popup": "dest/html/popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.dmm.com/netgame/social/-/gadgets/=/app_id=854854/"
      ],
      "js": [
        "dest/js/dmm.js"
      ]
    },
    {
      "matches": [
        "http://*/kcs2/index.php?*"
      ],
      "all_frames": true,
      "js": [
        "dest/js/kcs2.js"
      ]
    }
  ],
  "options_page": "/dest/html/options.html",
  "web_accessible_resources": [
    "/dest/img/mute.svg",
    "/dest/img/unmute.svg",
    "/dest/img/camera.svg"
  ],
  "content_security_policy": "script-src 'self' https://apis.google.com; object-src 'self'",
  "commands": {
    "screenshot": {
      "description": "プレイ画面のスクショを撮ります",
      "suggested_key": {
        "windows": "Ctrl+Shift+0",
        "mac": "Command+Shift+0",
        "chromeos": "Ctrl+Shift+0",
        "linux": "Ctrl+Shift+0"
      },
      "global": true
    }
  }
}