matrix.to opener

matrix.to opener

Open matrix.to links directly in your matrix client

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "version": "0.1",
  "author": "lilydjwg",
  "applications": {
    "gecko": {
      "id": "[email protected]",
      "strict_min_version": "63.0"
    }
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "https://matrix.to/",
    "tabs",
    "webRequest",
    "webRequestBlocking",
    "storage"
  ],
  "browser_action": {
    "browser_style": true,
    "default_icon": "icons/matrix-logo-m.svg",
    "default_popup": "options.html",
    "default_title": "__MSG_button__",
    "theme_icons": [
      {
        "dark": "icons/matrix-logo-m.svg",
        "light": "icons/matrix-logo-m-white.svg",
        "size": 32
      }
    ]
  },
  "options_ui": {
    "page": "options.html"
  },
  "icons": {
    "48": "icons/matrix-logo-m.svg",
    "96": "icons/matrix-logo-m.svg"
  }
}