ConCERTO Logon Manager Extension

ConCERTO Logon Manager Extension

Google Chrome Extension for ConCERTO Logon Manager.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_ExtName__",
  "version": "1.11",
  "description": "__MSG_ExtDescription__",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "permissions": [
    "tabs",
    "http://*/*",
    "https://*/*",
    "nativeMessaging",
    "contextMenus"
  ],
  "web_accessible_resources": [
    "inject.js"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "slmcontent.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "page_action": {
    "default_name": "Save Page",
    "default_title": "__MSG_SaveFormToLM__",
    "default_icon": {
      "19": "images/icon19.png",
      "38": "images/icon38.png"
    }
  },
  "default_locale": "en",
  "manifest_version": 2
}