Suggesty

Suggesty

Get human-like answers powered by GPT-3 to your Google searches

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Suggesty",
  "description": "Get human-like answers powered by GPT-3 to your Google searches",
  "version": "1.3",
  "manifest_version": 3,
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/search*"
      ],
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ]
}