LiNotify

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

LiNotifyとは何ですか?

LiNotifyはMathias Punkenhoferによって開発されたChromeの拡張機能で、その主な機能は「Notifies you when a player on lichess.org is online and/or playing.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot

LiNotify拡張機能のCRXファイルをダウンロード

LiNotify拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
}