UTSniper is a Web App Tool that automates sniping and selling players on FIFA Web App.
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",
"manifest_version": 3,
"name": "__MSG_app_name__",
"version": "1.1.0.6",
"default_locale": "en",
"description": "__MSG_messagename__",
"minimum_chrome_version": "116",
"permissions": [
"storage",
"notifications"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "img/icon16.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
}
},
"icons": {
"16": "img/icon16.png",
"32": "img/icon32.png",
"48": "img/icon48.png",
"128": "img/icon128.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https://www.ea.com/*/ea-sports-fc/ultimate-team/web-app/*",
"https://www.ea.com/ea-sports-fc/ultimate-team/web-app/*"
],
"js": [
"js/header.js",
"content.js"
]
}
],
"externally_connectable": {
"matches": [
"https://www.ea.com/*",
"https://futbin.com/*",
"https://www.futbin.com/*",
"https://discord.com/*",
"https://www.discord.com/*"
]
},
"host_permissions": [
"https://futbin.com/*",
"https://www.futbin.com/*"
],
"web_accessible_resources": [
{
"resources": [
"js/popup.js",
"js/header.js",
"js/main.js",
"js/main2.js",
"fonts/Play-Bold.ttf",
"fonts/Play-Regular.ttf"
],
"matches": [
"<all_urls>"
]
}
]
}