AMY | Maximize your Network

AMY | Maximize your Network

Amy's official chrome extension

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "AMY | Maximize your Network",
  "description": "Amy's official chrome extension",
  "version": "1.1.2308",
  "homepage_url": "https://app.myamy.io",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "favicon.png",
    "default_title": "Amy | Maximize your network",
    "default_popup": "index.html"
  },
  "background": {
    "scripts": [
      "background/background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://calendar.google.com/calendar/*"
      ],
      "all_frames": false,
      "css": [
        "./styles.extension.bundle.css",
        "./matter-0.2.2.min.css",
        "./jBox.min.css"
      ],
      "js": [
        "./jquery.js",
        "./moment.js",
        "./jBox.min.js",
        "./lottie.min.js",
        "./dom-scanner.bundle.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "unlimitedStorage",
    "tabs",
    "*://*/*"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval' https://browser.sentry-cdn.com https://cdn.segment.com; object-src 'self'",
  "web_accessible_resources": [
    "index.html",
    "/static/*",
    "/images/*",
    "/lottie/*",
    "injected-sniffer-script.js"
  ],
  "externally_connectable": {
    "matches": [
      "http://localhost:3000/*",
      "https://app.myamy.io/*",
      "https://app.stage.myamy.io/*"
    ]
  }
}