The free Citi Shop℠ browser extension finds offers at over 5,000 online merchants.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 3,
"version": "1.12.0",
"name": "Citi Shopâ„ : Smarter Online Shopping",
"short_name": "Citi Shopâ„ ",
"description": "The free Citi Shopâ„ browser extension finds offers at over 5,000 online merchants.",
"icons": {
"128": "img/icon-128.png"
},
"permissions": [
"storage",
"tabs",
"notifications",
"background",
"webRequest",
"cookies",
"unlimitedStorage"
],
"host_permissions": [
"http://*/*",
"https://*/*"
],
"action": {
"default_icon": "img/icon-disabled-128.png"
},
"background": {
"service_worker": "worker.js"
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start",
"js": [
"browser-polyfill.min.js",
"content.js"
]
},
{
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_start",
"js": [
"browser-polyfill.min.js",
"checkout.js"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"img/*",
"fonts/*"
],
"matches": [
"http://*/*",
"https://*/*"
]
},
{
"resources": [
"oauth.html",
"shoppay.js"
],
"matches": [
"<all_urls>"
]
},
{
"resources": [
"shoppay.js"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}