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": "Stripe Customer Map",
"description": "It can help you see where your stripe customers come from.Not official Stripe extension.",
"version": "1.0.0",
"host_permissions": [
"https:\/\/dashboard.stripe.com\/*"
],
"options_ui": {
"page": "options.html"
},
"action": {
"default_icon": "icon.png",
"default_popup": ""
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/dashboard.stripe.com\/*"
],
"js": [
"js\/vendor.js",
"js\/content_script.js"
],
"run_at": "document_end",
"all_frames": false
}
],
"background": {
"service_worker": "js\/background.js"
},
"web_accessible_resources": [
{
"resources": [
"js\/*",
"css\/*",
"static\/*"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": []
}