Opkey Token Request Plugin

Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "SSTS",
  "manifest_version": 2,
  "name": "Opkey Token Request Plugin",
  "permissions": [
    "tabs",
    "<all_urls>",
    "webRequest",
    "webRequestBlocking"
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://*.myopkey.com/*",
      "*://*.smartopkey.com/*",
      "*://*.opkeyone.com/*"
    ]
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "version": "1.0.0.5",
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "description": "Opkey Token Request allows user to fetch access token for 'Authorization Code' and 'Implicit' grant types for 'OAuth2' type.",
  "icons": {
    "16": "icons/addon128.png",
    "32": "icons/addon128.png",
    "48": "icons/addon128.png",
    "128": "icons/addon128.png"
  },
  "browser_action": {
    "default_icon": {
      "12": "icons/addon128.png",
      "14": "icons/addon128.png",
      "16": "icons/addon128.png",
      "32": "icons/addon128.png"
    },
    "default_title": "Opkey"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "js/jquery_min.js",
        "js/recorder/salesforcemdai.js"
      ],
      "all_frames": true,
      "run_at": "document_end"
    }
  ]
}