CMLviz Live Quotes

CMLviz Live Quotes

Get the Live Stock Price by hoving over cashtags like $TSLA with a link to cmlviz.com details page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CMLviz Live Quotes",
  "short_name": "CML Quotes",
  "description": "Get the Live Stock Price by hoving over cashtags like $TSLA with a link to cmlviz.com details page.",
  "version": "1.50",
  "page_action": {
    "default_icon": {
      "16": "images/cml16.png",
      "32": "images/cml32.png"
    },
    "default_popup": "popup.html"
  },
  "icons": {
    "16": "images/cml16.png",
    "32": "images/cml32.png",
    "48": "images/cml48.png",
    "128": "images/cml128.png"
  },
  "permissions": [
    "http://*/",
    "https://*/",
    "storage",
    "declarativeContent"
  ],
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "js/jquery-3.4.1.min.js",
        "content_script.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_idle"
    }
  ]
}