Data is synced from the Chrome Web Store. View the official store page for the most current information.
Hand-picked for quality and usefulness
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "CoinGecko CSV Portfolio Exporter",
"version": "1.0.4",
"description": "Exports CoinGecko portfolios and transactions to CSV.",
"permissions": [
"activeTab",
"storage",
"identity"
],
"host_permissions": [
"https:\/\/www.coingecko.com\/*"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/icon2.png",
"48": "icons\/icon2.png",
"128": "icons\/icon128.png"
}
},
"icons": {
"16": "icons\/icon2.png",
"48": "icons\/icon2.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
},
{
"matches": [
"https:\/\/*.coingecko.com\/*"
],
"js": [
"utils.js",
"ExtPay.js",
"content.js"
]
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'; connect-src https:\/\/extensionpay.com"
}
}