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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        ]
    }
}