Challonge Text Alert

Enables you to text participants when their games are about to start

Challonge Text Alert क्या है?

Challonge Text Alert JoeQuery द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Enables you to text participants when their games are about to start"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Challonge Text Alert एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Allows you to send text messages to players from the Challonge Brackets UI. 

This is an UNOFFICIAL extension.

NOTE: For your convenience, this extension uses my server as an SMS relay. This extension has been open sourced so you may modify the code to use your own server as an SMS relay.

https://github.com/joequery/Challonge-TextAlerts

CHANGELOG

0.0.10

* Allow for comma separated list of numbers for a single player. Works well for team events.

0.0.9

* Update extension to adapt to Challonge's new SVG UI overhaul

0.0.8

* Update extension to match changes in participants markup

0.0.7

* Updated extension to match new Challonge bracket markup

0.0.6

* Switched to sync storage from localstorage. Now tournament organizers can sign in to chrome using the same email to share phone numbers.
* A link to the bracket URL can now be sent with text messages.


0.0.5

* Custom message templates can be reordered

0.0.4

* Removed popout
* Styled options page
* Implemented custom message templates
* Current storage usage now viewable

0.0.3

* Implement basic US phone validation
* Focus message textarea when message template is selected for quicker modifications

0.0.2 

* Implement faster/more reliable way to determine if the user is an admin for the current bracket page                    

एक्सटेंशन की मूल जानकारी

नाम Challonge Text Alert Challonge Text Alert
ID hliaefkciaeklipacgfcpfphpbligpec
आधिकारिक URL https://chromewebstore.google.com/detail/challonge-text-alert/hliaefkciaeklipacgfcpfphpbligpec
विवरण Enables you to text participants when their games are about to start
फ़ाइल का आकार 46.03 KB
स्थापना संख्या 29
वर्तमान संस्करण 0.0.10
अंतिम अपडेट 2016-01-21
प्रकाशन तिथि 2016-01-20
रेटिंग 4.00/5 कुल 1 रेटिंग्स
डेवलपर JoeQuery
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Challonge Text Alert",
    "description": "Enables you to text participants when their games are about to start",
    "version": "0.0.10",
    "icons": {
        "128": "assets\/img\/challonge_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.challonge.com\/*"
            ],
            "css": [
                "assets\/css\/challonge.css"
            ],
            "js": [
                "assets\/js\/lib\/mustache.min.js",
                "assets\/js\/lib\/form2js.min.js",
                "assets\/js\/helpers.js",
                "assets\/js\/bracket.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "http:\/\/*.challonge.com\/*\/participants",
                "http:\/\/*.challonge.com\/*\/participants\/"
            ],
            "css": [
                "assets\/css\/challonge.css"
            ],
            "js": [
                "assets\/js\/lib\/mustache.min.js",
                "assets\/js\/helpers.js",
                "assets\/js\/participants.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "templates\/*",
        "assets\/img\/phone_icon.png"
    ],
    "options_page": "templates\/options.html",
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/twilio.joequery.me\/sms"
    ]
}