Echo Bridge

Echo Bridge

The bridge between your web site and the Echo

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "BRG",
  "name": "Echo Bridge",
  "description": "The bridge between your web site and the Echo",
  "manifest_version": 2,
  "browser_action": {
    "default_popup": "./index.html",
    "default_title": "Echo Bridge",
    "default_icon": {
      "16": "images/16.png",
      "32": "images/32.png"
    }
  },
  "icons": {
    "16": "images/16.png",
    "32": "images/32.png",
    "48": "images/48.png",
    "96": "images/96.png",
    "128": "images/128.png"
  },
  "version": "1.18.4",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "file://*/*",
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./content.js"
      ],
      "run_at": "document_start",
      "all_frames": true
    }
  ],
  "permissions": [
    "storage",
    "clipboardWrite",
    "notifications",
    "activeTab"
  ],
  "web_accessible_resources": [
    "inpage.js",
    "background.js",
    "unlimitedStorage.js"
  ]
}