RecapioGPT

RecapioGPT

RecapioGPT is an AI tool that can summarize any article or content you browse.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "RecapioGPT",
  "description": "RecapioGPT is an AI tool that can summarize any article or content you browse.",
  "version": "0.3.8",
  "manifest_version": 3,
  "action": {
    "default_popup": "index.html",
    "default_title": "Summarize Content"
  },
  "permissions": [
    "tabs"
  ],
  "icons": {
    "16": "logo16.png",
    "48": "logo48.png",
    "128": "logo128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content-script.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}