Sense Messaging for Chrome

Sense Messaging for Chrome

Popover view of the Sense Chat application

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sense Messaging for Chrome",
  "short_name": "Sense",
  "version": "1.35.0",
  "description": "Popover view of the Sense Chat application",
  "minimum_chrome_version": "88",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAut4kdq4DrYjnIQ18sy+EbWJEwEqIKkPT6dMDeFpxaJyL9xYILzBPv7XeKpchlZtg7c98PILj16SO2o5othSp5XXWhewIn+wOdqIZsgw5Tu1bwyjh8a/gNjEE8vXUJwRrbLmCz1VYoHMu3iCHIlNngfICSg3JTiivSUZqhWylVjZIaZlLrLZkM/jjsLv+46XC06HOn+bnii9dMMdv0Wqll/pgZeL5rTFuNYQm1bBDlkAd78oZX+X91eyEIvjNhby43lOZLaIHPtCacynkFgeJgL5wd17ADhs1MgffOoeAVhqQA0+H9uXn2eFDo2cVOQohwt/zBms7VUJqy+IGWE3p9wIDAQAB",
  "icons": {
    "16": "icons/iconx16.png",
    "32": "icons/iconx32.png",
    "48": "icons/iconx48.png",
    "128": "icons/iconx128.png",
    "256": "icons/iconx256.png",
    "512": "icons/iconx512.png"
  },
  "action": {
    "default_icon": {
      "16": "icons/iconx16.png",
      "32": "icons/iconx32.png",
      "48": "icons/iconx48.png",
      "128": "icons/iconx128.png",
      "256": "icons/iconx256.png",
      "512": "icons/iconx512.png"
    },
    "default_popup": "action-menu.html"
  },
  "permissions": [
    "alarms",
    "activeTab",
    "gcm",
    "notifications",
    "cookies",
    "storage"
  ],
  "host_permissions": [
    "*://*.sensehq.co/*",
    "*://*.sensehq.com/*",
    "*://*.dserver.com/*",
    "*://*.proxysense.link/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "*://*.sensehq.co/*",
        "*://*.sensehq.com/*",
        "*://*.dserver.com/*",
        "*://*.proxysense.link/*"
      ],
      "all_frames": true,
      "css": [
        "page.css"
      ],
      "js": [
        "page.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_ui": {
    "page": "options.html"
  },
  "externally_connectable": {
    "ids": [
      "*"
    ],
    "matches": [
      "*://*.sensehq.co/*",
      "*://*.sensehq.com/*",
      "*://*.dserver.com/*",
      "*://*.proxysense.link/*"
    ]
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'; font-src 'self' https://cdn.sensehq.com; frame-src 'self' https://*.sensehq.com https://*.sensehq.co https://*.dserver.com https://*.proxysense.link"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/*",
        "fonts/*",
        "page.js",
        "web/*",
        "firebase-messaging-sw.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}