Smarkets Alerts
This extension provides an easy way to be notified when the odds hit a certain price on Smarkets.
Smarkets Alerts là gì?
Smarkets Alerts là một tiện ích mở rộng Chrome được phát triển bởi sjlsquared, và tính năng chính của nó là "This extension provides an easy way to be notified when the odds hit a certain price on Smarkets.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Smarkets Alerts
Tải xuống các tệp mở rộng Smarkets Alerts dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
A simple extension to give you alerts when odds hit a certain price on Smarkets. Runs in the background so you can focus on other things while this app checks the odds. Alerts are sent within milliseconds of the price changing. Currently in early development - much more features to come! Things to note: - If you click an alert, it will automatically switch tabs for you. - "Under" means equal to or below. "Over" means equal to or above. e.g. Odds of under 12.0 would send an alert at 12.0, OR anything below it. - Notifications are automatically removed when: -The event has passed. -The event tab has been closed. -The alert has been closed/clicked.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | ibikpembnkfidhmkadoooipojmklgagk |
URL Chính Thức | https://chrome.google.com/webstore/detail/smarkets-alerts/ibikpembnkfidhmkadoooipojmklgagk |
Mô tả | This extension provides an easy way to be notified when the odds hit a certain price on Smarkets. |
Kích Thước Tệp | 94.4 KB |
Số Lần Cài Đặt | 83 |
Phiên Bản Hiện Tại | 0.0.5.9 |
Cập Nhật Lần Cuối | 2017-10-24 |
Ngày Phát Hành | 2017-10-24 |
Nhà Phát Triển | sjlsquared |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Smarkets Alerts", "short_name": "SmarketsAlerts", "description": "This extension provides an easy way to be notified when the odds hit a certain price on Smarkets.", "version": "0.0.5.9", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "activeTab", "tabs", "notifications", "alarms" ], "content_scripts": [ { "matches": [ "*:\/\/*.smarkets.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_end" } ], "background": { "persistent": false, "scripts": [ "background.js" ] } } |