StockEye
This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price.
Τι είναι το StockEye;
Το StockEye είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον safu92, και η κύρια λειτουργία του είναι "This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης StockEye
Λήψη αρχείων επέκτασης StockEye σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension helps you for keeping an eye on your stock's prices. In the settings page, you can enter up to 10 stock symbols and their respective expected prices you want to be notified for. The extension will monitor the current stock prices behind the scene and it will send you a notification if your stock's current price crosses your trigger price. Right now we only support stocks in NASDAQ, but we will be adding more in future updates. - This item is suitable for the people who have less stock portfolio. - Or the people who are just trying stock market and have bought 1 or 2 stocks. - Or for those who just keep an eye on daily stock price and keep track of market to jump in.
Βασικές Πληροφορίες Επέκτασης
Όνομα | StockEye |
ID | dpdeklogcpfljedfnheobpilipfalmdp |
Επίσημο URL | https://chromewebstore.google.com/detail/stockeye/dpdeklogcpfljedfnheobpilipfalmdp |
Περιγραφή | This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price. |
Μέγεθος Αρχείου | 1.03 MB |
Αριθμός Εγκαταστάσεων | 740 |
Τρέχουσα Έκδοση | 3.05 |
Τελευταία Ενημέρωση | 2024-01-05 |
Ημερομηνία Δημοσίευσης | 2020-06-17 |
Αξιολόγηση | 2.75/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | safu92 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://webkrafterz.com |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "StockEye", "description": "This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price.", "version": "3.05", "options_page": "options.html", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html", "default_title": "Stock Eye" }, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "permissions": [ "activeTab", "https:\/\/ajax.googleapis.com\/", "storage", "https:\/\/www.google.com\/", "notifications", "alarms" ], "web_accessible_resources": [ "css\/bootstrap.css" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com object-src 'self'" } |