SConnect

SConnect

SEcure Addons Manager for Chrome

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "SConnect",
  "short_name": "SConnect",
  "version": "2.15.1.0",
  "author": "Gemalto",
  "description": "SEcure Addons Manager for Chrome",
  "default_locale": "en",
  "icons": {
    "48": "img/icon48.png",
    "128": "img/icon128.png"
  },
  "options_page": "optionspage.html",
  "background": {
    "service_worker": "js/eventpage.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "file://*/*"
      ],
      "js": [
        "js/contentscript.js"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ],
  "action": {
    "default_icon": {
      "19": "img/icon19-bw.png",
      "38": "img/icon38-bw.png"
    },
    "default_title": "__MSG_inactive__",
    "default_popup": "actionpage.html"
  },
  "permissions": [
    "tabs",
    "nativeMessaging",
    "scripting"
  ],
  "host_permissions": [
    "<all_urls>"
  ]
}