manifest.json 799 B

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "manifest_version": 3,
  3. "name": "mavi wallet",
  4. "version": "0.2.0",
  5. "description": "mavi — krypco wallet with real keys encrypted in this browser. Create, import, unlock.",
  6. "action": {
  7. "default_title": "mavi wallet",
  8. "default_popup": "popup.html",
  9. "default_icon": {
  10. "16": "icons/16.png",
  11. "48": "icons/48.png",
  12. "128": "icons/128.png"
  13. }
  14. },
  15. "icons": {
  16. "16": "icons/16.png",
  17. "48": "icons/48.png",
  18. "128": "icons/128.png"
  19. },
  20. "permissions": ["storage", "tabs"],
  21. "host_permissions": [
  22. "http://127.0.0.1:8545/*",
  23. "http://127.0.0.1:8546/*",
  24. "http://127.0.0.1:3000/*",
  25. "http://localhost:3000/*"
  26. ],
  27. "browser_specific_settings": {
  28. "gecko": {
  29. "id": "mavi@krypco.eu",
  30. "strict_min_version": "115.0"
  31. }
  32. }
  33. }