Stock Extension
Shows stock information as a browser action
ما هو Stock Extension؟
Stock Extension هو إضافة Chrome تم تطويرها بواسطة jamessitto، والميزة الرئيسية لها هي "Shows stock information as a browser action".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Stock Extension
قم بتنزيل ملفات الامتداد Stock Extension بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
عنوان 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" ] } } |