StockEye
This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price.
StockEye란 무엇입니까?
StockEye은(는) safu92에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension keeps an eye on your stock prices and it will notify you whenever the app crosses your trigger price."입니다.
확장 프로그램 스크린샷
StockEye 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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'" } |