BearBy

BearBy

The bearby addon connecting an API to websites which use web3 scripts of bearby so they can interact with the massa blockchain. Using bearby addon as web3 developer you can inject bearby-web3.js to your website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "BearBy",
  "manifest_version": 2,
  "icons": {
    "16": "icons/16.png",
    "19": "icons/19.png",
    "38": "icons/38.png",
    "39": "icons/39.png",
    "48": "icons/48.png",
    "96": "icons/96.png",
    "128": "icons/128.png"
  },
  "permissions": [
    "storage",
    "notifications",
    "activeTab",
    "http://*/",
    "https://*/"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    "phishing.html"
  ],
  "browser_action": {
    "default_icon": {
      "19": "icons/19.png",
      "38": "icons/38.png"
    },
    "default_title": "BearBy",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "version": "0.5.0",
  "browser_specific_settings": {
    "gecko": {
      "id": "{d55eba43-e9b6-4109-b715-d15d9bb97a29}"
    }
  }
}