GptAutoBOT: Write automatically with AI

GptAutoBOT: Write automatically with AI

Automatically write status facebook, twitter... by AI ChatGPT

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "1.0.1",
  "name": "GptAutoBOT: Write automatically with AI",
  "short_name": "GptAutoBOT",
  "description": "Automatically write status facebook, twitter... by AI ChatGPT",
  "host_permissions": [
    "https://*.openai.com/*",
    "<all_urls>"
  ],
  "icons": {
    "16": "img/16x16.png",
    "32": "img/32x32.png",
    "48": "img/48x48.png",
    "128": "img/128x128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "action": {
    "default_title": "GPTAUTOBOT",
    "default_icon": "img/128x128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "js": [
        "monitor.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ]
}