Stock Extension

Shows stock information as a browser action

What is Stock Extension?

Stock Extension is a Chrome extension developed by jamessitto, and its main feature is "Shows stock information as a browser action".

Extension Screenshots

screenshot

Download Stock Extension Extension CRX File

Download Stock Extension extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Stock Tracker Extension by nwoodthorpe
Chrome extension that shows favourite stocks in a chrome extension icon. Select your favourite stocks and the extension will cycle between them every few seconds showing the current price. +/- is indicated by the text color.

This extension uses the Yahoo Finance API for pulling stock information. Find the ticker name Yahoo Finance uses, which may be prefixed by the exchange. E.g. NYSE:SHOP                    

Extension Basic Information

Name Stock Extension Stock Extension
ID dnnjkhphmdlpldfbcmkkklhldgjhdhif
Official URL https://chromewebstore.google.com/detail/stock-extension/dnnjkhphmdlpldfbcmkkklhldgjhdhif
Description Shows stock information as a browser action
File Size 22.49 KB
Installation Count 178
Current Version 1.0.0
Last Updated 2018-10-02
Publish Date 2018-10-02
Rating 1.00/5 Total 2 Ratings
Developer jamessitto
Payment Type free
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stock Extension",
    "version": "1.0.0",
    "description": "Shows stock information as a browser action",
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "storage"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    }
}