Folio: Manage Real Estate Deals from Gmail

Folio: Manage Real Estate Deals from Gmail

Create and share real estate closing timelines from your Gmail inbox. Integrates seamlessly with Google Drive and Calendar.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Folio: Manage Real Estate Deals from Gmail",
  "version": "1.2.20903",
  "icons": {
    "16": "16x16.png",
    "48": "48x48.png",
    "128": "128x128.png"
  },
  "manifest_version": 3,
  "minimum_chrome_version": "92",
  "description": "Create and share real estate closing timelines from your Gmail inbox. Integrates seamlessly with Google Drive and Calendar.",
  "web_accessible_resources": [
    {
      "resources": [
        "fonts/folio.ttf",
        "assets/*",
        "pageWorld.js"
      ],
      "matches": [
        "https://mail.google.com/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "assets/vendor.js",
        "assets/folio.js",
        "assets/inject-css.js"
      ],
      "run_at": "document_end",
      "all_frames": false
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "pageWorld.js"
      ],
      "run_at": "document_start",
      "all_frames": false,
      "world": "MAIN"
    }
  ],
  "background": {
    "service_worker": "assets/background.js",
    "type": "module"
  },
  "content_security_policy": {
    "sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
  },
  "permissions": [
    "storage",
    "cookies"
  ],
  "host_permissions": [
    "https://www.amitree.com/",
    "https://apis.google.com/"
  ],
  "externally_connectable": {
    "matches": [
      "https://www.amitree.com/*"
    ]
  },
  "action": {
    "default_title": "Folio"
  }
}