Bearer Token Retriever

Bearer Token Retriever

Retrieves your bearer token from a given page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Bearer Token Retriever",
  "version": "0.0.1",
  "description": "Retrieves your bearer token from a given page",
  "manifest_version": 2,
  "permissions": [
    "clipboardWrite",
    "contextMenus",
    "cookies",
    "tabs",
    "https://*.palantirfoundry.com/",
    "https://*.palantirfoundry.co.uk/",
    "https://*.palantirfoundry.fr/",
    "https://*.palantircloud.com/"
  ],
  "background": {
    "scripts": [
      "main.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "16": "images/key_16.png",
      "32": "images/key_32.png",
      "48": "images/key_48.png",
      "128": "images/key_128.png"
    }
  },
  "icons": {
    "16": "images/key_16.png",
    "32": "images/key_32.png",
    "48": "images/key_48.png",
    "128": "images/key_128.png"
  }
}