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": "BlockScan Profile Export Tool",
"version": "1.0.0",
"description": "Export your blockchain explorer profiles (addresses, transactions, and tokens) quickly in JSON, CSV or TXT formats",
"permissions": [
"storage"
],
"host_permissions": [
"https:\/\/etherscan.io\/*",
"https:\/\/snowscan.xyz\/*",
"https:\/\/basescan.org\/*",
"https:\/\/kromascan.com\/*"
],
"background": {
"service_worker": "js\/background.js",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https:\/\/etherscan.io\/*",
"https:\/\/snowscan.xyz\/*",
"https:\/\/basescan.org\/*",
"https:\/\/kromascan.com\/*"
],
"js": [
"js\/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"assets\/icons\/*"
],
"matches": [
"https:\/\/etherscan.io\/*",
"https:\/\/snowscan.xyz\/*",
"https:\/\/basescan.org\/*",
"https:\/\/kromascan.com\/*"
]
}
],
"icons": {
"16": "assets\/icons\/icon_16.png",
"32": "assets\/icons\/icon_32.png",
"48": "assets\/icons\/icon_48.png",
"64": "assets\/icons\/icon_64.png",
"128": "assets\/icons\/icon_128.png",
"256": "assets\/icons\/icon_256.png"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "assets\/icons\/icon_16.png",
"32": "assets\/icons\/icon_32.png",
"48": "assets\/icons\/icon_48.png",
"64": "assets\/icons\/icon_64.png",
"128": "assets\/icons\/icon_128.png",
"256": "assets\/icons\/icon_256.png"
}
}
}