NovaTexter - Chat GPT Chrome Extension

NovaTexter - Chat GPT Chrome Extension

Your AI helper with the latest ChatGPT models, inside any text-area! For Twitter, Linkedin, Gmail, Wordpress and many more.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NovaTexter - Chat GPT Chrome Extension",
  "description": "Your AI helper with the latest ChatGPT models, inside any text-area! For Twitter, Linkedin, Gmail, Wordpress and many more.",
  "version": "1.5.7",
  "action": {
    "default_popup": "popup.html",
    "default_icon": "icon128.png"
  },
  "permissions": [
    "storage"
  ],
  "host_permissions": [
    "https://*/*",
    "http://*/*",
    "file:///*",
    "*://*.app/*",
    "*://*.www/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*",
        "file:///*",
        "*://*.app/*",
        "*://*.www/*"
      ],
      "exclude_matches": [
        "*://mail.google.com/*"
      ],
      "js": [
        "content.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "https://mail.google.com/mail/*"
      ],
      "js": [
        "gmailContentScript.js"
      ],
      "all_frames": true,
      "match_about_blank": true
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  }
}