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"
        ]
    }
}