AI Assistant

AI Assistant

AI Assistant helps you answer question, summarize and explain pages and texts!

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AI Assistant",
  "version": "1.0",
  "description": "AI Assistant helps you answer question, summarize and explain pages and texts!",
  "content_scripts": [
    {
      "matches": [
        "https://extensionpay.com/*"
      ],
      "js": [
        "./lib/ExtPay.js",
        "./js/limits.js"
      ],
      "run_at": "document_start"
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_matches": [
        "https://extensionpay.com/*"
      ],
      "css": [
        "style.css"
      ],
      "js": [
        "./lib/jquery.js",
        "./lib/ExtPay.js",
        "./js/content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "icons": {
    "16": "./logo/logo_16.png",
    "32": "./logo/logo_32.png",
    "48": "./logo/logo_48.png",
    "128": "./logo/logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "popup.html",
    "default_title": "GPT Assistant"
  },
  "permissions": [
    "contextMenus",
    "activeTab",
    "storage"
  ]
}