LiNotify

Notifies you when a player on lichess.org is online and/or playing.

LiNotify क्या है?

LiNotify Mathias Punkenhofer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Notifies you when a player on lichess.org is online and/or playing."।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Don't want to miss the chance to spectate the Chess World Champion live, or any other of your favorite players ? LiNotify enables you to "follow" certain LiChess users by visiting their lichess.org profiles and clicking on the LiNotify icon. Whenever the followed user comes online or starts playing LiNotify will trigger a system notification to alert you of the fact. 
Additionally LiNotify shows you if any user statuses changed (came online/started playing), since you last checked, by displaying a number bellow the extension icon in the browser.
 
Notification appearance and sound are entirely operating system dependent. In the extension options you can further control what notifications you would like to receive for certain users.

You want to contribute to LiNotify? Awesome! Check out the extension on github at https://github.com/mpunkenhofer/linotify

I am not affiliated in any way with lichess.org.                    

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

नाम LiNotify LiNotify
ID dpfdenddcngojnndogbfhpampiplllpj
आधिकारिक URL https://chromewebstore.google.com/detail/linotify/dpfdenddcngojnndogbfhpampiplllpj
विवरण Notifies you when a player on lichess.org is online and/or playing.
फ़ाइल का आकार 323 KB
स्थापना संख्या 146
वर्तमान संस्करण 1.2.6
अंतिम अपडेट 2021-06-21
प्रकाशन तिथि 2020-05-08
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर Mathias Punkenhofer
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/mpunkenhofer/linotify
सहायता पृष्ठ URL https://github.com/mpunkenhofer/linotify/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "LiNotify",
    "description": "__MSG_extensionDescription__",
    "manifest_version": 2,
    "default_locale": "en",
    "permissions": [
        "alarms",
        "storage",
        "notifications"
    ],
    "icons": {
        "48": "assets\/images\/linotify_icon48.png",
        "96": "assets\/images\/linotify_icon96.png",
        "128": "assets\/images\/linotify_icon128.png"
    },
    "browser_action": {
        "browser_style": true,
        "default_title": "LiNotify",
        "default_icon": {
            "32": "assets\/images\/linotify_icon32.png",
            "48": "assets\/images\/linotify_icon48.png",
            "96": "assets\/images\/linotify_icon96.png",
            "128": "assets\/images\/linotify_icon128.png"
        },
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.lichess.org\/*",
                "https:\/\/*.lichess.org\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "content.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "assets\/fonts\/linotify.woff2",
        "options.html"
    ],
    "version": "1.2.6",
    "homepage_url": "https:\/\/github.com\/mpunkenhofer\/linotify"
}