Chrome AWS SAML Token Expiry Reminder

Chrome AWS SAML Token Expiry Reminder

Re-authenticate with AWS federated ADFS (SAML) credentials when they expire.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Chrome AWS SAML Token Expiry Reminder",
  "version": "1.0.12",
  "description": "Re-authenticate with AWS federated ADFS (SAML) credentials when they expire.",
  "author": "gitlon",
  "permissions": [
    "cookies",
    "tabs",
    "https://*/adfs/ls/*",
    "https://*.aws.amazon.com/*",
    "https://*.amazon.com/*",
    "alarms",
    "notifications",
    "storage"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "icons": {
    "16": "clock.png",
    "48": "clock.png",
    "128": "clock.png"
  },
  "browser_action": {
    "default_icon": "clock.png",
    "default_title": "AWS SAML Credentials\nShows minutes until expiry"
  },
  "options_ui": {
    "page": "options.html",
    "chrome_style": true
  },
  "background": {
    "persistent": false,
    "scripts": [
      "eventpage.js"
    ]
  },
  "omnibox": {
    "keyword": "caster"
  }
}