ViaFutbol: Soccer Results and Positions

ViaFutbol: Soccer Results and Positions

If you are a fan of World Soccer and you want to always be updated with the latest results, ViaFutbol is what you need.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_appName__",
  "version": "1.0.0",
  "manifest_version": 2,
  "description": "__MSG_appDesc__",
  "author": "F&H Solutions",
  "default_locale": "es",
  "permissions": [
    "<all_urls>",
    "storage",
    "tabs",
    "activeTab",
    "alarms",
    "http://*/",
    "https://*/"
  ],
  "homepage_url": "https://viafutbol.com",
  "icons": {
    "128": "images/5.png"
  },
  "browser_action": {
    "default_icon": "images/5.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*"
      ],
      "run_at": "document_end",
      "js": [
        "content.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "web_accessible_resources": [
    "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css",
    "https://code.jquery.com/jquery-3.5.1.slim.min.js",
    "https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js",
    "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"
  ]
}