Stock Extension

Shows stock information as a browser action

Was ist Stock Extension?

Stock Extension ist eine Chrome-Erweiterung, die von jamessitto entwickelt wurde, und ihr Hauptmerkmal ist "Shows stock information as a browser action".

Erweiterungsscreenshots

screenshot

Stock Extension-Erweiterungs-CRX-Datei herunterladen

Laden Sie Stock Extension-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Stock Extension Stock Extension
ID dnnjkhphmdlpldfbcmkkklhldgjhdhif
Offizielle URL https://chromewebstore.google.com/detail/stock-extension/dnnjkhphmdlpldfbcmkkklhldgjhdhif
Beschreibung Shows stock information as a browser action
Dateigröße 22.49 KB
Installationsanzahl 178
Aktuelle Version 1.0.0
Letztes Update 2018-10-02
Veröffentlichungsdatum 2018-10-02
Bewertung 1.00/5 Insgesamt 2 Bewertungen
Entwickler jamessitto
Zahlungsart free
Unterstützte Sprachen 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"
        ]
    }
}