46 lines
868 B
JSON
46 lines
868 B
JSON
{
|
|
"manifest_version": 3,
|
|
"name": "SHiNE Browser Plugin Wallet",
|
|
"version": "0.1.0",
|
|
"description": "Wallet-session plugin for SHiNE with session-only login via trusted device.",
|
|
"permissions": [
|
|
"storage",
|
|
"sidePanel"
|
|
],
|
|
"host_permissions": [
|
|
"<all_urls>"
|
|
],
|
|
"background": {
|
|
"service_worker": "background.js",
|
|
"type": "module"
|
|
},
|
|
"content_scripts": [
|
|
{
|
|
"matches": [
|
|
"<all_urls>"
|
|
],
|
|
"js": [
|
|
"content-script.js"
|
|
],
|
|
"run_at": "document_start"
|
|
}
|
|
],
|
|
"web_accessible_resources": [
|
|
{
|
|
"resources": [
|
|
"provider-bridge.js",
|
|
"js/lib/vendor/solana-publickey-bundle.js"
|
|
],
|
|
"matches": [
|
|
"<all_urls>"
|
|
]
|
|
}
|
|
],
|
|
"action": {
|
|
"default_title": "Open SHiNE Wallet"
|
|
},
|
|
"side_panel": {
|
|
"default_path": "popup.html"
|
|
}
|
|
}
|