Stock Ticker Lookup

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

什麼是Stock Ticker Lookup?

Stock Ticker Lookup是由Anna Xing開發的Chrome擴展程式,該擴展的主要功能是“Conveniently view details about a highlighted stock ticker on a webpage.”。

擴展截圖

screenshot
screenshot

下載Stock Ticker Lookup擴展crx文件

下載Stock Ticker Lookup擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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'"
}