Find the best football statistics & tips for goals, corners, cards & many more markets.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Instant Football Stats",
"description": "Find the best football statistics & tips for goals, corners, cards & many more markets.",
"version": "2.0.0",
"manifest_version": 3,
"icons": {
"16": "goals.png",
"32": "goals.png",
"48": "goals.png",
"128": "goals.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "goals.png",
"32": "goals.png",
"48": "goals.png",
"128": "goals.png"
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://extensionpay.com/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
},
{
"matches": [
"<all_urls>"
],
"js": [
"ExtPay.js",
"popup.min.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"subscription.js"
],
"matches": [
"<all_urls>"
],
"use_dynamic_url": true
}
],
"permissions": [
"storage"
]
}