Stock Quotes Loaded

Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"

Wat is Stock Quotes Loaded?

Stock Quotes Loaded is een Chrome-extensie ontwikkeld door Dizzy Developments, en de belangrijkste functie is "Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Stock Quotes Loaded

Download Stock Quotes Loaded-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 Quotes Loaded identifies stock symbols in webpages and adds a tooltip with (delayed) quote information. 

Someone asked for this on reddit's /r/stocks, this is a very early edition for those who want to try it out and give me some feedback before I add more features. So if you want different info, additional markets, etc, let me know!

Currently supports NASDAQ / NYSE quotes. 

More to come.                    

Basisinformatie over de Extensie

Naam Stock Quotes Loaded Stock Quotes Loaded
ID fkacbjkdecbicbdmgnljcnjkecjfhmfd
Officiële URL https://chromewebstore.google.com/detail/stock-quotes-loaded/fkacbjkdecbicbdmgnljcnjkecjfhmfd
Beschrijving Adds tooltips to stock market tickers, "Symbol (StockExchange): Bid / Ask (Change, PercentChange)"
Bestandsgrootte 156 KB
Aantal Installaties 70
Huidige Versie 1.1
Laatst Bijgewerkt 2016-01-27
Publicatiedatum 2016-01-26
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Dizzy Developments
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Stock Quotes Loaded",
    "description": "Adds tooltips to stock market tickers, \"Symbol (StockExchange): Bid \/ Ask (Change, PercentChange)\"",
    "version": "1.1",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/*\/*.html"
            ],
            "css": [
                "content\/content.css"
            ],
            "js": [
                "lib\/jquery.js",
                "lib\/findAndReplaceDOMText.js",
                "lib\/sprintf.min.js",
                "lib\/markets.js",
                "content\/content.js"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "web_accessible_resources": [
        "images\/icon16.png",
        "images\/icon48.png",
        "images\/icon128.png"
    ]
}