刀剣専覧-刀剣乱舞専用ブラウザ

刀剣専覧-刀剣乱舞専用ブラウザ

刀剣乱舞の専用ブラウザです。専用のゲーム画面を用意します。

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "刀剣専覧-刀剣乱舞専用ブラウザ",
  "version": "0.1.20",
  "description": "刀剣乱舞の専用ブラウザです。専用のゲーム画面を用意します。",
  "devtools_page": "html/devtools.html",
  "background": {
    "scripts": [
      "js/background.js"
    ],
    "persistent": true
  },
  "browser_action": {
    "default_icon": {
      "19": "icon/TohkenBrowser-19.png"
    },
    "default_title": "刀剣専覧"
  },
  "permissions": [
    "activeTab",
    "contextMenus",
    "storage",
    "tabs",
    "unlimitedStorage",
    "<all_urls>"
  ],
  "icons": {
    "16": "icon/TohkenBrowser-16.png",
    "48": "icon/TohkenBrowser-48.png",
    "128": "icon/TohkenBrowser-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://pc-play.games.dmm.com/play/tohken/"
      ],
      "js": [
        "js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "icon/*",
    "img/*"
  ],
  "minimum_chrome_version": "73",
  "manifest_version": 2
}