Together And United We Stand

Together And United We Stand

Pay as you go service based on AI to enhance the email's body to be more inclusive.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Mai Fathy",
  "version": "0.0.1",
  "description": "Pay as you go service based on AI to enhance the email's body to be more inclusive. ",
  "manifest_version": 3,
  "name": "Together And United We Stand",
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "https://mail.google.com/*",
    "https://outlook.office.com/mail/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.office.com/mail/*"
      ],
      "css": [
        "content.css"
      ],
      "js": [
        "content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "https://mail.google.com/*",
        "https://outlook.office.com/*"
      ],
      "resources": [
        "images/TAWUS_32x32.png"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/TAWUS_32x32.png",
      "24": "images/TAWUS_32x32.png",
      "32": "images/TAWUS_32x32.png"
    },
    "default_popup": "index.html",
    "default_title": "TAUWS Landing Page"
  },
  "icons": {
    "16": "images/TAWUS_128x128.png",
    "32": "images/TAWUS_128x128.png",
    "48": "images/TAWUS_128x128.png",
    "128": "images/TAWUS_128x128.png"
  }
}