AIME - The ChatGPT in finance area

AIME - The ChatGPT in finance area

Aime can analyze stocks, summarize news, and provide sharable trading ideas as you surf the web.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "AIME - The ChatGPT in finance area",
  "version": "1.0.0",
  "description": "Aime can analyze stocks, summarize news, and provide sharable trading ideas as you surf the web.",
  "icons": {
    "16": "icons/aime2.png",
    "32": "icons/aime2.png",
    "48": "icons/aime2.png",
    "128": "icons/aime2.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_title": "AIME - The ChatGPT in finance area"
  },
  "host_permissions": [
    "*://ainvest.com/"
  ],
  "permissions": [
    "storage",
    "tabs",
    "activeTab",
    "cookies"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ],
      "css": [
        "contentLink.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "icons/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}