Crono

Crono

Crono helps synchronize your CRM.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Crono",
  "description": "Crono helps synchronize your CRM.",
  "version": "2.10.10",
  "manifest_version": 3,
  "background": {
    "service_worker": "background/bundle.js"
  },
  "permissions": [
    "cookies",
    "storage",
    "activeTab",
    "tabs"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "content-script/imgs/*",
        "fonts/*"
      ],
      "matches": [
        "https://www.linkedin.com/*",
        "https://*.hubspot.com/*",
        "https://*.lightning.force.com/*",
        "https://*.pipedrive.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "all_frames": false,
      "matches": [
        "https://www.linkedin.com/*",
        "https://*.hubspot.com/*"
      ],
      "js": [
        "content-script/bundle.js"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": false,
      "matches": [
        "https://www.linkedin.com/*"
      ],
      "world": "MAIN",
      "js": [
        "linkedin-main-world/bundle.js"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": false,
      "matches": [
        "https://*.lightning.force.com/*",
        "https://*.pipedrive.com/*"
      ],
      "js": [
        "content-script-main-world-connector/bundle.js"
      ]
    },
    {
      "run_at": "document_start",
      "all_frames": false,
      "matches": [
        "https://*.lightning.force.com/*",
        "https://*.pipedrive.com/*"
      ],
      "world": "MAIN",
      "js": [
        "content-script/bundle.js"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": {
      "16": "/images/icon16.png",
      "32": "/images/icon32.png",
      "48": "/images/icon48.png",
      "128": "/images/icon128.png"
    }
  },
  "icons": {
    "16": "/images/icon16.png",
    "32": "/images/icon32.png",
    "48": "/images/icon48.png",
    "128": "/images/icon128.png"
  },
  "host_permissions": [
    "https://*.crono.one/*",
    "https://*.linkedin.com/*",
    "https://*.hubspot.com/*",
    "https://*.lightning.force.com/*",
    "https://*.pipedrive.com/*"
  ],
  "externally_connectable": {
    "matches": [
      "https://app.crono.one/*"
    ]
  }
}