Smarkets Alerts

This extension provides an easy way to be notified when the odds hit a certain price on Smarkets.

什么是Smarkets Alerts?

Smarkets Alerts是由sjlsquared开发的Chrome扩展程序,该扩展的主要功能是“This extension provides an easy way to be notified when the odds hit a certain price on Smarkets.”。

扩展截图

screenshot

下载Smarkets Alerts扩展crx文件

下载Smarkets Alerts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Smarkets Alerts Smarkets Alerts
ID ibikpembnkfidhmkadoooipojmklgagk
官方URL https://chrome.google.com/webstore/detail/smarkets-alerts/ibikpembnkfidhmkadoooipojmklgagk
简介 This extension provides an easy way to be notified when the odds hit a certain price on Smarkets.
文件大小 94.4 KB
安装次数 83
当前版本 0.0.5.9
更新时间 2017-10-24
上架时间 2017-10-24
开发者 sjlsquared
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
        ]
    }
}