Stock Extension

Shows stock information as a browser action

Wat is Stock Extension?

Stock Extension is een Chrome-extensie ontwikkeld door jamessitto, en de belangrijkste functie is "Shows stock information as a browser action".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Stock Extension

Download Stock Extension-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Stock Extension Stock Extension
ID dnnjkhphmdlpldfbcmkkklhldgjhdhif
Officiële URL https://chromewebstore.google.com/detail/stock-extension/dnnjkhphmdlpldfbcmkkklhldgjhdhif
Beschrijving Shows stock information as a browser action
Bestandsgrootte 22.49 KB
Aantal Installaties 178
Huidige Versie 1.0.0
Laatst Bijgewerkt 2018-10-02
Publicatiedatum 2018-10-02
Beoordeling 1.00/5 Totaal 2 Beoordelingen
Ontwikkelaar jamessitto
Betalingswijze free
Ondersteunde Talen 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"
        ]
    }
}