The only wallet you need to do everything on the Solana blockchain. Store, stake, and swap your tokens with Solflare.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"name": "Solflare Wallet",
"description": "A safe and powerful crypto wallet that brings all of the benefits of Solana to you",
"version": "1.72.2",
"manifest_version": 2,
"icons": {
"16": "assets/logo-16.png",
"24": "assets/logo-24.png",
"32": "assets/logo-32.png",
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
},
"browser_action": {
"default_icon": {
"16": "assets/logo-16.png",
"24": "assets/logo-24.png",
"32": "assets/logo-32.png",
"48": "assets/logo-48.png",
"128": "assets/logo-128.png"
},
"default_title": "Solflare",
"default_popup": "app_popup.html"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Shift+S"
},
"description": "Open Solflare extension"
}
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"resources": [
"inpage.js",
"phishing.html",
"actions.css"
],
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"permissions": [
"storage",
"activeTab",
"tabs",
"alarms"
],
"browser_specific_settings": {
"gecko": {
"id": "{6d72262a-b243-4dc6-8f4f-be96c74e0a86}"
}
}
}