Stock Extension

Shows stock information as a browser action

Stock Extensionとは何ですか?

Stock Extensionはjamessittoによって開発されたChromeの拡張機能で、その主な機能は「Shows stock information as a browser action」です。

拡張機能のスクリーンショット

screenshot

Stock Extension拡張機能のCRXファイルをダウンロード

Stock Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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                    

拡張機能の基本情報

名前 Stock Extension Stock Extension
ID dnnjkhphmdlpldfbcmkkklhldgjhdhif
公式URL https://chromewebstore.google.com/detail/stock-extension/dnnjkhphmdlpldfbcmkkklhldgjhdhif
説明 Shows stock information as a browser action
ファイルサイズ 22.49 KB
インストール数 178
現在のバージョン 1.0.0
最終更新日 2018-10-02
公開日 2018-10-02
評価 1.00/5 合計 2 レビュー
開発者 jamessitto
支払い方法 free
対応言語 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"
        ]
    }
}