Stock Extension

Shows stock information as a browser action

Co to jest Stock Extension?

Stock Extension to rozszerzenie Chrome opracowane przez jamessitto, a jego główną funkcją jest „Shows stock information as a browser action”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Stock Extension

Pobierz pliki rozszerzeń Stock Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Stock Extension Stock Extension
ID dnnjkhphmdlpldfbcmkkklhldgjhdhif
Oficjalny URL https://chromewebstore.google.com/detail/stock-extension/dnnjkhphmdlpldfbcmkkklhldgjhdhif
Opis Shows stock information as a browser action
Rozmiar pliku 22.49 KB
Liczba instalacji 178
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2018-10-02
Data Publikacji 2018-10-02
Ocena 1.00/5 Łącznie 2 Oceny
Deweloper jamessitto
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}