DeftGPT - AI Chat GPT Writing Companion

DeftGPT - AI Chat GPT Writing Companion

DeftGPT is the advanced and upgraded version of ChatGPT, that provides you with instant access to information right on your…

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "DeftGPT - AI Chat GPT Writing Companion",
  "version": "2.4.11",
  "permissions": [
    "tabs",
    "storage",
    "contextMenus",
    "scripting",
    "downloads",
    "identity"
  ],
  "action": {
    "default_title": "DeftGPT - AI Chat GPT Writing Companion"
  },
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "background": {
    "service_worker": "static/background/index.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*",
        "static/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "oauth2": {
    "client_id": "109996700884-ueseas1c22kej715ogr107hoimtk2noi.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/spreadsheets"
    ]
  },
  "host_permissions": [
    "*://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.deftgpt.com/*"
      ],
      "js": [
        "static/content/content.js"
      ]
    },
    {
      "matches": [
        "*://*/*"
      ],
      "js": [
        "static/content/selection.js",
        "static/content/sidepanel.js"
      ]
    },
    {
      "matches": [
        "https://*.google.com/search?*"
      ],
      "js": [
        "static/content/addon.js",
        "static/content/searchEngine.js"
      ]
    },
    {
      "matches": [
        "https://*.yandex.com/search/*"
      ],
      "js": [
        "static/content/yandex.js",
        "static/content/searchEngine.js"
      ]
    },
    {
      "matches": [
        "https://*.duckduckgo.com/?*"
      ],
      "js": [
        "static/content/duckduckgo.js",
        "static/content/searchEngine.js"
      ]
    },
    {
      "matches": [
        "https://*.bing.com/search?*"
      ],
      "js": [
        "static/content/bing.js",
        "static/content/searchEngine.js"
      ]
    },
    {
      "matches": [
        "https://*.baidu.com/s?*"
      ],
      "js": [
        "static/content/baidu.js",
        "static/content/searchEngine.js"
      ]
    },
    {
      "run_at": "document_end",
      "matches": [
        "https://twitter.com/*",
        "https://x.com/*"
      ],
      "js": [
        "static/content/twitter.js"
      ],
      "css": [
        "static/css/content/twitter.css"
      ]
    },
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "static/content/gmail.js"
      ]
    },
    {
      "matches": [
        "https://www.youtube.com/*",
        "https://www.youtube.com/watch?*"
      ],
      "js": [
        "static/content/youtube.js"
      ]
    }
  ]
}