PES Stats Converter Copy

PES Stats Converter Copy

Creates a floating button at the bottom right corner of the website that will allow you to convert FIFA, FM and Efootball stats into old-gen PES stats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "PES Stats Converter Copy - By PES Indie Team",
  "version": "1.2.6",
  "description": "Creates a floating button at the bottom right corner of the website that will allow you to convert FIFA, FM and Efootball stats into old-gen PES stats.",
  "permissions": [
    "activeTab",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.sofifa.com/player/*",
        "*://*.fminside.net/players/*",
        "*://*.pesmaster.com/*/efootball-2022/player/*"
      ],
      "js": [
        "js/global_functions.js",
        "js/pes_player.js",
        "js/pes21_player.js",
        "js/pes13_player.js",
        "js/nationalities.js",
        "js/pes21_stats_table.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.sofifa.com/player/*"
      ],
      "js": [
        "js/sofifa_player.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.fminside.net/players/*"
      ],
      "js": [
        "js/fminside_player.js"
      ],
      "run_at": "document_idle"
    },
    {
      "matches": [
        "*://*.pesmaster.com/*/efootball-2022/player/*"
      ],
      "js": [
        "js/pesmaster_player.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "pes_indie_16.png",
    "48": "pes_indie_48.png",
    "128": "pes_indie_128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "pes_indie_16.png",
      "48": "pes_indie_48.png",
      "128": "pes_indie_128.png"
    }
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "79.0"
    }
  }
}