To Discord

To Discord

To discord allows you to share all type of contents to added Discord channels directly from your browser tab. You can share contents like, Hyper links, embedded media, selected text or even the current tab's url.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "version": "2.1.1",
  "name": "To Discord",
  "description": "Sends content to added discord channels",
  "default_locale": "en",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "icons/ext_icon_16.png",
    "20": "icons/ext_icon_20.png",
    "32": "icons/ext_icon_32.png",
    "40": "icons/ext_icon_40.png",
    "48": "icons/ext_icon_48.png",
    "128": "icons/ext_icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/ext_icon_16.png",
      "20": "icons/ext_icon_20.png",
      "32": "icons/ext_icon_32.png",
      "40": "icons/ext_icon_40.png",
      "48": "icons/ext_icon_48.png",
      "128": "icons/ext_icon_128.png"
    }
  },
  "applications": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "permissions": [
    "activeTab",
    "menus",
    "storage",
    "unlimitedStorage"
  ],
  "options_ui": {
    "open_in_tab": true,
    "browser_style": true,
    "page": "pages/options.html"
  }
}