Stock Ticker Lookup

Conveniently view details about a highlighted stock ticker on a webpage.

Stock Ticker Lookup क्या है?

Stock Ticker Lookup Anna Xing द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Conveniently view details about a highlighted stock ticker on a webpage."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Stock Ticker Lookup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Get quick information about a highlighted U.S. stock ticker on any webpage. 

Use your cursor to highlight a ticker in Chrome, then click on the extension to view the following key information:
⭐ Company name
⭐ Share price (as of the last trading day's closing time)
⭐ Price change from previous trading day
⭐ Price graph over the last 5 trading days
⭐ 52-week high/low
⭐ Daily volume
⭐ Dividend yield
⭐ P/E ratio
⭐ Market cap
⭐ Link to the stock on Yahoo Finance

The extension uses the free Alpha Vantage API for retrieving information, which is rate-limited and provides data as of the last trading day's closing time (not real-time). Please follow the brief instructions provided upon installation to activate your API key(s) and use the Alpha Vantage data.

Also note that the Alpha Vantage data is primarily for stocks listed on major U.S. exchanges, so ETFs and stocks on other exchanges may not be supported by this extension.                    

एक्सटेंशन की मूल जानकारी

नाम Stock Ticker Lookup Stock Ticker Lookup
ID ckjpfhbpkkphhcfahbnepfilflpmdhin
आधिकारिक URL https://chromewebstore.google.com/detail/stock-ticker-lookup/ckjpfhbpkkphhcfahbnepfilflpmdhin
विवरण Conveniently view details about a highlighted stock ticker on a webpage.
फ़ाइल का आकार 205 KB
स्थापना संख्या 201
वर्तमान संस्करण 1.0
अंतिम अपडेट 2021-01-10
प्रकाशन तिथि 2021-01-10
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर Anna Xing
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/anna-xing/ticker-extension
सहायता पृष्ठ URL https://github.com/anna-xing/ticker-extension/blob/main/README.md
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Stock Ticker Lookup",
    "version": "1.0",
    "description": "Conveniently view details about a highlighted stock ticker on a webpage.",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "assets\/icon.png",
        "32": "assets\/icon.png",
        "48": "assets\/icon.png",
        "128": "assets\/icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icon.png",
            "32": "assets\/icon.png",
            "48": "assets\/icon.png",
            "128": "assets\/icon.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "highlight.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/Chart.js\/2.9.4\/Chart.bundle.min.js; object-src 'self'"
}