Finance Toolbar - Real Time Stock Tracker
Get real time stock market information about your favorite stocks.
Τι είναι το Finance Toolbar - Real Time Stock Tracker;
Το Finance Toolbar - Real Time Stock Tracker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.stefanvd.net, και η κύρια λειτουργία του είναι "Get real time stock market information about your favorite stocks.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Finance Toolbar - Real Time Stock Tracker
Λήψη αρχείων επέκτασης Finance Toolbar - Real Time Stock Tracker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension adds a toolbar below your address bar and it shows you the latest stock in the dynamic scrolling bar. You get real time information from your favorite stock. Finance Toolbar is a lightweight and useful add-in designed for getting a quick peek of your favorite stocks. You see a real time stock tracker just below the address bar of your web browser. And it dynamically moves the stocks from right to left. And updates automatically. If you want to know more details about that stock, you can click on the name. It then opens a new page with a detailed information and a stock graph. You can add all stock you want from NASDAQ, S&P Dow Jones, Toronto Stock Exchange, London Stock Exchange, etc. A few great features in this browser extension: + Real time stock information about the 'Ask', 'Percent', 'Price' and 'Market Capitalization' + Option for Asian users to invert red & green color + Option to add and remove your favorite stocks + Option for double stock ticker bar + Option to track the Bitcoin currency value And more... Finance Data is coming from the Stefan vd Finance API. For a more robust and stable data. Project Information: https://www.stefanvd.net/project/finance-toolbar/browser/ Required Permissions: "tabs": This is needed for the following features: to show you the welcome and guide page, add or remove the finance bar, and to open the Options page. "storage": This to save the settings on your local computer, and to sync it to your web browser account. "": This to control the bar on all websites that include http, and https. <<< Option feature >>> To protect your eyes at night and to get focus on the video player such as YouTube™. It's recommend to use and install the Turn Off the Lights https://chrome.google.com/webstore/detail/bfbmjmiodbnnpllbbbfblcplfjjepjdn
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | cichbngoomgnobmmjpagmbkimbamigie |
Επίσημο URL | https://chrome.google.com/webstore/detail/finance-toolbar-real-time/cichbngoomgnobmmjpagmbkimbamigie |
Περιγραφή | Get real time stock market information about your favorite stocks. |
Μέγεθος Αρχείου | 657 KB |
Αριθμός Εγκαταστάσεων | 41,488 |
Τρέχουσα Έκδοση | 1.0.0.6 |
Τελευταία Ενημέρωση | 2020-03-25 |
Ημερομηνία Δημοσίευσης | 2020-03-21 |
Αξιολόγηση | 3.62/5 Συνολικά 766 Αξιολογήσεις |
Προγραμματιστής | https://www.stefanvd.net |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://www.stefanvd.net/project/finance-toolbar/browser/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://www.stefanvd.net/support/ |
URL της Σελίδας Πολιτικής Απορρήτου | https://www.stefanvd.net/privacy |
Υποστηριζόμενες Γλώσσες | id,ms,de,en,en-GB,en-US,fil,fr,nl,no,vi,tr,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,pt-BR,pt-PT,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,mr,hi,bn,gu,ta,te,ml,th,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_name__", "short_name": "Finance Toolbar", "version": "1.0.0.6", "description": "__MSG_description__", "author": "Stefan vd", "homepage_url": "https:\/\/www.stefanvd.net\/support\/", "icons": { "16": "icons\/icon16.png", "32": "icons\/icon32.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "page": "background.html", "persistent": true }, "content_security_policy": "script-src 'self'; img-src *; object-src 'self'", "web_accessible_resources": [ "js\/toolbar.js", "toolbar.html" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+M", "mac": "MacCtrl+Shift+M" } }, "toggle-feature-financetoolbar": { "suggested_key": { "default": "Ctrl+Shift+P", "mac": "MacCtrl+Shift+P" }, "description": "__MSG_titelshortfinance__" } }, "browser_action": { "default_icon": { "19": "icons\/icon1.png", "38": "icons\/[email protected]" }, "default_title": "__MSG_browserbutton__", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*.stefanvd.net\/project\/finance-toolbar\/browser\/options.html" ], "css": [ "css\/body.css" ], "js": [ "js\/constants.js", "js\/content.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/*.stefanvd.net\/project\/finance-toolbar\/browser\/options.html" ], "js": [ "js\/constants.js", "js\/options.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "open_in_tab": true }, "offline_enabled": true, "minimum_chrome_version": "18", "permissions": [ "contextMenus", "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "alarms" ] } |