Improved Google Stocks

Improved Google Stocks

Enhance the Google Stock widget by allowing instant news searching on a stock.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Improved Google Stocks",
  "version": "1.1",
  "description": "Enhance the Google Stock widget by allowing instant news searching on a stock.",
  "icons": {
    "128": "images/logo.png"
  },
  "action": {
    "default_popup": "page-action/popup.html",
    "default_icon": {
      "16": "images/logo.png",
      "32": "images/logo.png",
      "48": "images/logo.png",
      "128": "images/logo.png"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.google.com/search*"
      ],
      "js": [
        "content-script/contentScript.js"
      ],
      "css": [
        "content-script/contentScript.css"
      ]
    }
  ],
  "content_security_policy": {
    "extension_pages": "default-src 'self'; script-src 'self'"
  },
  "manifest_version": 3
}