Stock Extension

Shows stock information as a browser action

Vad är Stock Extension?

Stock Extension är en Chrome-tillägg utvecklad av jamessitto, och dess huvudfunktion är "Shows stock information as a browser action".

Tilläggsskärmbilder

screenshot

Ladda ner Stock Extension-förlängningens CRX-fil

Ladda ner Stock Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Stock Extension Stock Extension
ID dnnjkhphmdlpldfbcmkkklhldgjhdhif
Officiell webbadress https://chromewebstore.google.com/detail/stock-extension/dnnjkhphmdlpldfbcmkkklhldgjhdhif
Beskrivning Shows stock information as a browser action
Filstorlek 22.49 KB
Antal Installationer 178
Aktuell Version 1.0.0
Senast Uppdaterad 2018-10-02
Publiceringsdatum 2018-10-02
Betyg 1.00/5 Totalt 2 Betyg
Utvecklare jamessitto
Betalningssätt free
Stödda Språk 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"
        ]
    }
}