Arcadia Desktop Native Companion

Native Companion for the Arcadia Desktop.
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.5.0.0",
  "name": "Arcadia Desktop Native Companion",
  "short_name": "Arcadia Desktop Native Companion",
  "author": "Arcadia Solutions",
  "homepage_url": "https://www.arcadia.io/",
  "description": "Native Companion for the Arcadia Desktop.",
  "version_name": "1.5.0",
  "permissions": [
    "notifications",
    "nativeMessaging",
    "storage"
  ],
  "icons": {
    "16": "images/arcadia16.png",
    "20": "images/arcadia20.png",
    "40": "images/arcadia40.png",
    "44": "images/arcadia44.png",
    "48": "images/arcadia48.png",
    "50": "images/arcadia50.png",
    "128": "images/arcadia128.png",
    "150": "images/arcadia150.png",
    "176": "images/arcadia176.png"
  },
  "background": {
    "service_worker": "background/background.js"
  },
  "content_scripts": [
    {
      "all_frames": true,
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/content.js"
      ]
    }
  ],
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  }
}