Stock Extension

Shows stock information as a browser action

Stock Extensionคืออะไร?

Stock Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jamessitto และคุณลักษณะหลักของมันคือ "Shows stock information as a browser action"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Stock Extension

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}