Files
aitbc/extensions/aitbc-wallet-firefox/manifest.json
oib 2cb2fbbeda ```
feat: add market stats endpoint, wallet integration, and browser wallet link

- Update devnet genesis timestamp to 1767000206
- Add market statistics endpoint with 24h volume, price change, and payment counts
- Add wallet balance and info API endpoints in exchange router
- Remove unused SessionDep dependencies from exchange endpoints
- Integrate real AITBC wallet extension connection in trade-exchange UI
- Add market data fetching with API fallback for price and volume display
- Add cache-busting query
2025-12-29 18:04:04 +01:00

47 lines
934 B
JSON

{
"manifest_version": 2,
"name": "AITBC Wallet",
"version": "1.0.0",
"description": "AITBC Browser Wallet for trading and managing AITBC tokens",
"permissions": [
"storage",
"activeTab"
],
"content_scripts": [
{
"matches": ["https://aitbc.bubuit.net/*", "http://localhost:3002/*"],
"js": ["content.js"],
"run_at": "document_start"
}
],
"browser_action": {
"default_popup": "popup.html",
"default_title": "AITBC Wallet",
"default_icon": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"web_accessible_resources": [
["injected.js"]
],
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"background": {
"scripts": ["background.js"],
"persistent": false
}
}