Examine source code of FACIL'iti Companion

Inspect and view changes in FACIL'iti Companion source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 3,
  "version": "2.3.0",
  "name": "__MSG_extensionName__",
  "homepage_url": "https://www.facil-iti.fr/",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en_US",
  "author": "FACIL'iti",
  "permissions": [
    "storage"
  ],
  "icons": {
    "16": "assets/icons/installed-16.png",
    "32": "assets/icons/installed-32.png",
    "48": "assets/icons/installed-48.png",
    "64": "assets/icons/installed-64.png",
    "128": "assets/icons/installed-128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "/popup/index.html#status-unavailable",
    "default_title": "__MSG_extensionName__",
    "default_icon": {
      "16": "assets/icons/uninstalled-16.png",
      "32": "assets/icons/uninstalled-32.png",
      "48": "assets/icons/uninstalled-48.png",
      "64": "assets/icons/uninstalled-64.png",
      "128": "assets/icons/uninstalled-128.png"
    }
  },
  "content_security_policy": {
    "extension_pages": "script-src 'self'; object-src 'self'"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "context.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}