PingOne-Extension

PingOne-Extension

Cloud Single Sign-On Done Right

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Ping Identity Corporation",
  "background": {
    "page": "forge.html"
  },
  "browser_action": {
    "default_icon": {
      "16": "src/resources/production/icons/icon-ext-off-16.png",
      "20": "src/resources/production/icons/icon-ext-off-20.png",
      "24": "src/resources/production/icons/icon-ext-off-24.png",
      "25": "src/resources/production/icons/icon-ext-off-25.png",
      "30": "src/resources/production/icons/icon-ext-off-30.png",
      "32": "src/resources/production/icons/icon-ext-off-32.png",
      "40": "src/resources/production/icons/icon-ext-off-40.png",
      "44": "src/resources/production/icons/icon-ext-off-44.png",
      "48": "src/resources/production/icons/icon-ext-off-48.png",
      "50": "src/resources/production/icons/icon-ext-off-50.png",
      "64": "src/resources/production/icons/icon-ext-off-64.png",
      "128": "src/resources/production/icons/icon-ext-off-128.png",
      "150": "src/resources/production/icons/icon-ext-off-150.png"
    },
    "default_popup": "src/resources/production/popup.html",
    "default_title": "PingOne-Extension"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "src/resources/production/page.css"
      ],
      "exclude_matches": [
        "*://*.connect.pingidentity.com/*",
        "*://*.fls.doubleclick.net/activity*",
        "*://*.google.com/recaptcha/*",
        "*://b.company-target.com/ect.html",
        "*://insight.adsrvr.org/track/*",
        "*://analytics.twitter.com/i/*",
        "*://*/web-portal/*&wicket-ajax-baseurl=*",
        "*://lms.partnersfcu.org/Akcelerant/*"
      ],
      "js": [
        "forge/app_config.js",
        "forge/all.js",
        "src/js/appApiReplacement.js",
        "src/js/crAPIReplacement.js",
        "src/js/extensionCommon.js",
        "src/js/wgxpath.install.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "run_at": "document_idle"
    }
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://desktop.pingone.com; object-src 'self'",
  "description": "Cloud Single Sign-On Done Right",
  "icons": {
    "16": "src/resources/production/icons/icon-ext-on-16.png",
    "20": "src/resources/production/icons/icon-ext-on-20.png",
    "24": "src/resources/production/icons/icon-ext-on-24.png",
    "25": "src/resources/production/icons/icon-ext-on-25.png",
    "30": "src/resources/production/icons/icon-ext-on-30.png",
    "32": "src/resources/production/icons/icon-ext-on-32.png",
    "40": "src/resources/production/icons/icon-ext-on-40.png",
    "44": "src/resources/production/icons/icon-ext-on-44.png",
    "48": "src/resources/production/icons/icon-ext-on-48.png",
    "50": "src/resources/production/icons/icon-ext-on-50.png",
    "64": "src/resources/production/icons/icon-ext-on-64.png",
    "128": "src/resources/production/icons/icon-ext-on-128.png",
    "150": "src/resources/production/icons/icon-ext-on-150.png"
  },
  "manifest_version": 2,
  "name": "PingOne-Extension",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "*://*/*",
    "tabs"
  ],
  "version": "2.57.0",
  "web_accessible_resources": [
    "src/resources/*"
  ]
}