GameStop Wallet
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": "GameStop Wallet",
"description": "GameStop Wallet",
"version": "1.0.11",
"manifest_version": 3,
"minimum_chrome_version": "92",
"icons": {
"16": "icons/favicon-16.png",
"32": "icons/favicon-32.png",
"48": "icons/favicon-48.png",
"64": "icons/favicon-64.png",
"128": "icons/favicon-128.png"
},
"action": {
"default_popup": "index.html",
"default_title": "GameStop Wallet",
"default_icon": {
"16": "icons/favicon-16.png",
"32": "icons/favicon-32.png",
"48": "icons/favicon-48.png",
"64": "icons/favicon-64.png",
"128": "icons/favicon-128.png"
}
},
"background": {
"service_worker": "background/index.js"
},
"content_scripts": [
{
"matches": [
"https://*/*",
"http://*/*"
],
"js": [
"browser-polyfill.min.js",
"contentscript/index.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"permissions": [
"storage",
"tabs"
],
"host_permissions": [
"<all_urls>"
],
"web_accessible_resources": [
{
"resources": [
"inpage/index.js",
"/icons/wallet-logo-squared.svg"
],
"matches": [
"https://*/*",
"http://*/*"
]
}
]
}