JWT

JWT

Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "JWT",
  "version": "1.1",
  "description": "Chrome extension to display JWT used in Authorization: Bearer JWT HTTP headers.",
  "permissions": [
    "tabs",
    "activeTab",
    "webRequest",
    "declarativeContent",
    "http://*:*/*",
    "https://*:*/*"
  ],
  "background": {
    "scripts": [
      "jwt.js"
    ]
  },
  "page_action": {
    "default_title": "JWT",
    "default_popup": "jwtpopup.html",
    "show_matches": [
      "http://*:*/*",
      "https://*:*/*"
    ],
    "default_icon": {
      "16": "jwt.png",
      "24": "jwt.png",
      "32": "jwt.png"
    }
  },
  "manifest_version": 2
}