Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "PSP Detector",
"version": "3.2026.223.108",
"description": "Chrome extension to detect Payment Service Providers on web pages",
"permissions": [
"activeTab",
"favicon",
"scripting",
"storage"
],
"optional_permissions": [
"webRequest"
],
"optional_host_permissions": [
"https:\/\/*\/*"
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
},
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"48": "images\/default_48.png",
"128": "images\/default_128.png"
}
},
"options_ui": {
"page": "options.html",
"open_in_tab": true
},
"icons": {
"48": "images\/default_48.png",
"128": "images\/default_128.png"
},
"web_accessible_resources": [
{
"resources": [
"images\/*",
"psps.json",
"exempt-domains.json"
],
"matches": [
"https:\/\/*\/*"
]
}
]
}