Stock Extension
Shows stock information as a browser action
什麼是Stock Extension?
Stock Extension是由jamessitto開發的Chrome擴展程式,該擴展的主要功能是“Shows stock information as a browser action”。
擴展截圖
下載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 |
ID | dnnjkhphmdlpldfbcmkkklhldgjhdhif |
官方網址 | 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" ] } } |