MahjongSoul Review Supporter

MahjongSoul Review Supporter

This is an unofficial extension to easily use NAGA , Mortal & Akochan. It works only on review screen and does not affect game play.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_appName__",
  "version": "1.1.3",
  "description": "__MSG_appDesc__",
  "author": "kbkn",
  "icons": {
    "48": "imgs/extension_icon48.png",
    "128": "imgs/extension_icon128.png"
  },
  "default_locale": "en",
  "content_scripts": [
    {
      "matches": [
        "https://game.mahjongsoul.com/*",
        "https://mahjongsoul.game.yo-star.com/*",
        "https://game.maj-soul.net/*",
        "https://game.maj-soul.com/*"
      ],
      "js": [
        "content_script.js"
      ]
    },
    {
      "matches": [
        "https://naga.dmv.nico/naga_report/order_form/"
      ],
      "js": [
        "content_script_naga.js"
      ]
    },
    {
      "matches": [
        "https://mjai.ekyu.moe/"
      ],
      "js": [
        "content_script_mjai.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://game.mahjongsoul.com/*",
    "https://mahjongsoul.game.yo-star.com/*",
    "https://game.maj-soul.net/*",
    "https://game.maj-soul.com/*",
    "https://naga.dmv.nico/naga_report/order_form/",
    "https://mjai.ekyu.moe/"
  ],
  "options_page": "options.html",
  "web_accessible_resources": [
    {
      "resources": [
        "web_accessible_resources.js",
        "dd.js",
        "event.js"
      ],
      "matches": [
        "https://game.mahjongsoul.com/*",
        "https://mahjongsoul.game.yo-star.com/*",
        "https://game.maj-soul.net/*",
        "https://game.maj-soul.com/*"
      ],
      "use_dynamic_url": true
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}