Stock Extension

Shows stock information as a browser action

Stock Extension là gì?

Stock Extension là một tiện ích mở rộng Chrome được phát triển bởi jamessitto, và tính năng chính của nó là "Shows stock information as a browser action".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stock Extension

Tải xuống các tệp mở rộng Stock Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stock Extension Stock Extension
ID dnnjkhphmdlpldfbcmkkklhldgjhdhif
URL Chính Thức https://chromewebstore.google.com/detail/stock-extension/dnnjkhphmdlpldfbcmkkklhldgjhdhif
Mô tả Shows stock information as a browser action
Kích Thước Tệp 22.49 KB
Số Lần Cài Đặt 178
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2018-10-02
Ngày Phát Hành 2018-10-02
Đánh Giá 1.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển jamessitto
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}