Esportal AutoAccept

Esportal AutoAccept

A plugin for users to auto accept their matches on esportal

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Esportal AutoAccept",
  "description": "A plugin for users to auto accept their matches on esportal",
  "version": "1.01",
  "manifest_version": 2,
  "permissions": [
    "*://*.esportal.com/*",
    "storage",
    "management",
    "background"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "icons": {
    "16": "img/icon16.png",
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.esportal.com/*"
      ],
      "js": [
        "jquery-3.4.1.js",
        "content.js"
      ]
    }
  ],
  "browser_action": {
    "default_popup": "startpage.html",
    "default_icon": "off.png",
    "default_title": "Esportal AutoAccept"
  }
}