CivicSync Virtual Replica Creator

CivicSync Virtual Replica Creator

CivicSync Virtual Replica Creator - a cutting-edge Chrome plugin designed to unlock the next frontier in predictive analysis.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "2.1.2",
  "manifest_version": 3,
  "short_name": "Web Tracker",
  "options_page": "src/dashboard.html",
  "default_locale": "en",
  "icons": {
    "16": "16x16.png",
    "32": "32x32.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "idle",
    "unlimitedStorage",
    "alarms",
    "notifications",
    "https://api.civicsync.com/",
    "scripting"
  ],
  "host_permissions": [
    "https://civicsync.com/*",
    "https://www.civicsync.com/*"
  ],
  "offline_enabled": true,
  "background": {
    "service_worker": "src/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>",
        "https://civicsync.com/*",
        "https://www.civicsync.com/*"
      ],
      "js": [
        "src/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "externally_connectable": {
    "matches": [
      "https://civicsync.com/*",
      "https://www.civicsync.com/*"
    ]
  },
  "action": {
    "default_popup": "src/popup.html",
    "default_title": "CivicSync"
  }
}