Discord Token Login

Logging into a Discord account using a token, made easier. Ported to Firefox from chrome
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Discord Token Login",
  "version": "1.0.0",
  "description": "Logging into a Discord account using a token, made easier. Ported to FF",
  "icons": {
    "128": "logo.png"
  },
  "browser_action": {
    "default_popup": "index.html",
    "default_icon": "logo.png"
  },
  "background": {
    "scripts": [
      "script.js"
    ],
    "persistent": true
  },
  "permissions": [
    "http://*.discord.com/*",
    "https://*.discord.com/*"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c84437b5-9e85-4be8-97cc-9f2c9383f6a5}"
    }
  }
}