Rabet

Rabet

A simple way to interact with the Stellar network

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Rabet",
  "version": "1.7.3",
  "description": "Rabet extension, a simple way to interact with Stellar network.",
  "homepage_url": "https://rabet.io",
  "icons": {
    "16": "logo/16x16.png",
    "32": "logo/32x32.png",
    "48": "logo/48x48.png",
    "128": "logo/128x128.png"
  },
  "browser_action": {
    "default_title": "Rabet",
    "default_icon": "logo/128x128.png",
    "default_popup": "dist/popup.html"
  },
  "permissions": [
    "storage",
    "tabs"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "dist/content_script.js"
      ],
      "match_about_blank": true,
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "dist/*.*"
  ],
  "background": {
    "scripts": [
      "dist/background_script.js",
      "dist/727.js"
    ],
    "persistent": false
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "{944a7882-4c44-4505-8292-2977cf8455cc}"
    }
  }
}