Inspect and view changes in Cactus Link source codes across current and past versions
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Cactus Link",
"version": "2.1.13",
"manifest_version": 3,
"description": "Cactus Link provides seamless access to DeFi and Web3 across both EVM and non-EVM chains.",
"icons": {
"16": "icons/logo16.png",
"48": "icons/logo48.png",
"128": "icons/logo128.png"
},
"permissions": [
"storage",
"alarms",
"tabs",
"unlimitedStorage"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons/logo16.png",
"48": "icons/logo48.png",
"128": "icons/logo128.png"
}
},
"background": {
"service_worker": "static/js/background.js"
},
"content_scripts": [
{
"matches": [
"https://*/*"
],
"js": [
"static/js/inpage.js"
],
"run_at": "document_start",
"all_frames": true,
"world": "MAIN"
},
{
"matches": [
"https://*/*"
],
"js": [
"static/js/content.js"
],
"run_at": "document_start",
"all_frames": true
},
{
"matches": [
"https://debug.mycactus.dev:1443/*",
"https://www.mycactus.dev/*",
"https://*.mycactus.com/*",
"https://*.mycactus.io/*",
"https://*.mycactus.sg/*"
],
"js": [
"static/js/cactus-inpage.js"
],
"run_at": "document_start",
"all_frames": true,
"world": "MAIN"
},
{
"matches": [
"https://debug.mycactus.dev:1443/*",
"https://www.mycactus.dev/*",
"https://*.mycactus.com/*",
"https://*.mycactus.io/*",
"https://*.mycactus.sg/*"
],
"js": [
"static/js/cactus-content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"host_permissions": [
"https://*/*",
"http://*/*"
],
"web_accessible_resources": [
{
"matches": [
"https://*/*"
],
"resources": [
"/static/js/cactus-inpage.js",
"/static/js/inpage.js"
]
}
]
}