Yahoo Finance Enhanced for stock investors

Yahoo Finance Enhanced for stock investors

Enhance your financial analysis! Extend information graphically to Yahoo finance to provide new insights into your market analysis.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Yahoo Finance Enhanced for stock investors",
  "version": "1.2022.65",
  "description": "Enhance your financial analysis! Extend information graphically to Yahoo finance to provide new insights into your market analysis.",
  "minimum_chrome_version": "93",
  "permissions": [
    "tabs",
    "identity"
  ],
  "host_permissions": [
    "https://*.finance.yahoo.com/*",
    "https://functions.fuyutarow.workers.dev/*"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://twitter.com/*",
        "https://finance.yahoo.com/*",
        "https://seekingalpha.com/*"
      ],
      "js": [
        "pages/content/import-index.js"
      ],
      "run_at": "document_end"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/icons/*.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "chunks/*-*.js",
        "pages/content/index.js"
      ],
      "matches": [
        "https://twitter.com/*",
        "https://finance.yahoo.com/*",
        "https://seekingalpha.com/*",
        "https://*.finance.yahoo.com/*",
        "https://functions.fuyutarow.workers.dev/*"
      ]
    }
  ],
  "action": {
    "default_icon": {
      "32": "assets/icons/favicon-32.png"
    },
    "default_title": "Tooltip title",
    "default_popup": "pages/popup/index.html"
  },
  "icons": {
    "72": "assets/icons/favicon-72.png",
    "128": "assets/icons/favicon-128.png",
    "228": "assets/icons/favicon-228.png"
  },
  "oauth2": {
    "client_id": "209121271337-93qqdav7f8snsq1jmugd2d9k3ok31u5r.apps.googleusercontent.com",
    "scopes": [
      "https://www.googleapis.com/auth/userinfo.email",
      "https://www.googleapis.com/auth/userinfo.profile"
    ]
  }
}