禁これ

禁これ

艦これのプレイ可能時間を制限します

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "禁これ",
  "version": "0.0.3",
  "description": "艦これのプレイ可能時間を制限します",
  "icons": {
    "128": "icon_128.png"
  },
  "background": {
    "scripts": [
      "consts.js",
      "lib.js",
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.dmm.com/netgame/social/-/gadgets/=/app_id=854854/"
      ],
      "js": [
        "content-messaging.js",
        "content-views.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "http://osapi.dmm.com/gadgets/*"
      ],
      "js": [
        "content-messaging.js",
        "iframe-content.js"
      ],
      "run_at": "document_start"
    }
  ],
  "options_page": "options.html"
}