FlashAI

FlashAI

Enhance your browsing experience with FlashAI, a powerful Chrome extension that integrates ChatGPT.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Enhance your browsing experience with FlashAI, a powerful Chrome extension that integrates ChatGPT.",
  "version": "0.0.2",
  "manifest_version": 3,
  "name": "FlashAI",
  "options_page": "options.html",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_icon": "profile.png"
  },
  "icons": {
    "128": "profile.png"
  },
  "permissions": [
    "storage",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ],
      "css": []
    }
  ],
  "devtools_page": "devtools.html",
  "web_accessible_resources": [
    {
      "resources": [
        "new-logo.png",
        "animation-small.gif",
        "content.styles.css"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}