Gmail AI Assistant - GmailPT

Gmail AI Assistant - GmailPT

Boost your email productivity with GmailPT, AI email assistant for all webmails like Gmail, Outlook, Yahoo, and more.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Gmail AI Assistant - GmailPT",
  "short_name": "GmailPT",
  "description": "Boost your email productivity with GmailPT, AI email assistant for all webmails like Gmail, Outlook, Yahoo, and more.",
  "version": "1.1.2.5",
  "version_name": "1.1.2.5",
  "author": "[email protected]",
  "homepage_url": "https://gmailpt.ai",
  "options_page": "options.html",
  "default_locale": "en",
  "permissions": [
    "activeTab",
    "storage",
    "cookies",
    "scripting"
  ],
  "host_permissions": [
    "https://gmailpt.ai/*",
    "http://127.0.0.1:8080/*"
  ],
  "background": {
    "service_worker": "js/background.min.js"
  },
  "action": {
    "default_icon": {
      "16": "img/GmailPT16-min.png",
      "48": "img/GmailPT48-min.png",
      "128": "img/GmailPT128-min.png"
    },
    "default_title": "GmailPT"
  },
  "icons": {
    "16": "img/GmailPT16-min.png",
    "48": "img/GmailPT48-min.png",
    "128": "img/GmailPT128-min.png"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/jquery.min.js",
        "js/GmailPT_content.min.js"
      ],
      "css": [
        "css/GmailPT_content.min.css",
        "css/all.min.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*.png",
        "css/webfonts/*.ttf",
        "css/webfonts/*.woff2",
        "css/*.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}