Lavender

Lavender

Easily write more thoughtful and effective e-mails using social data and linguistic AI.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Lavender",
  "description": "Easily write more thoughtful and effective e-mails using social data and linguistic AI.",
  "version": "3.0.2",
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://localhost:3000/*",
        "http://localhost:5000/*"
      ],
      "js": [
        "legacy/DemoExtensionJS.js",
        "react/init.js",
        "popup.js"
      ],
      "css": [
        "composecontainer.css",
        "extension.css",
        "react/bundle.css",
        "react/init.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://dashboard.lavender.ai/*"
      ],
      "js": [
        "legacy/extractApiKey.js"
      ],
      "all_frames": false
    },
    {
      "matches": [
        "https://*/*",
        "http://localhost:8080/*"
      ],
      "js": [
        "vendor/userPilotApp.js"
      ],
      "all_frames": false
    }
  ],
  "background": {
    "service_worker": "react/service_worker.js",
    "type": "module"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "react/*",
        "react/**/*"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "composecontainer.css"
      ],
      "matches": [
        "https://*/*"
      ]
    },
    {
      "matches": [
        "https://fonts.googleapis.com/*"
      ],
      "resources": [
        "/*"
      ]
    },
    {
      "resources": [
        "images/static/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "use_dynamic_url": false
    },
    {
      "resources": [
        "composecontainer.css"
      ],
      "matches": [
        "https://*/*"
      ]
    }
  ],
  "action": {
    "default_title": "Lavender",
    "default_icon": {
      "16": "images/lavender16.png",
      "24": "images/lavender24.png",
      "32": "images/lavender32.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/lavender16.png",
    "32": "images/lavender32.png",
    "48": "images/lavender48.png",
    "128": "images/lavender128.png"
  },
  "manifest_version": 3
}