BGA帕米尔和平中文卡图

BGA PAX:PAMIR帕米尔和平中文卡图

// ==UserScript==
// @name         BGA帕米尔和平中文卡图
// @namespace    https://boardgamearena.com
// @version      v1.0.0
// @description  BGA PAX:PAMIR帕米尔和平中文卡图
// @author       klingeling
// @match        *boardgamearena.com/*paxpamir*
// @icon         https://x.boardgamearena.net/data/gamemedia/paxpamir/box/en_75.png
// @resource     customCSS https://raw.githubusercontent.com/klingeling/18xx-i18n-plugin/refs/heads/main/bga.css
// @grant        GM_addStyle
// @grant        GM_getResourceText
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

   // 代码内部    引入bootstrap的css文件并加入html中
   const css = GM_getResourceText("customCSS");
   GM_addStyle(css);
})();