Stock Ticker Search

Stock Ticker Search

Highlight a Stock Ticker/Name and right to click find information on it

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background_page": "background.html",
  "browser_action": {
    "default_icon": "images/logo.png",
    "popup": "popup.html"
  },
  "content_scripts": [
    {
      "js": [
        "myscript.js",
        "background.js",
        "popup.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "description": "Highlight a Stock Ticker/Name and right to click find information on it",
  "icons": {
    "16": "images/logo16.png",
    "32": "images/logo32.png",
    "48": "images/logo48.png",
    "128": "images/logo128.png"
  },
  "name": "Stock Ticker Search",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "contextMenus",
    "tabs"
  ],
  "update_url": "http://clients2.google.com/service/update2/crx",
  "version": "1.1",
  "manifest_version": 2
}