Idle reminder

Gives user notification after a certain maount of time idle.

Idle reminderとは何ですか?

Idle reminderはMatthew Perlickによって開発されたChromeの拡張機能で、その主な機能は「Gives user notification after a certain maount of time idle.」です。

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

screenshot

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

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

拡張機能の使用方法

                        This extension sends you a reminder notification after you've been inactive for a certain amount of time. You can set this time by clicking the Idle Reminder icon in your chrome toolbar. 

This extension is intended for people who wan't to stay on task while working. It can also be helpful for remote workers that will appear as 'inactive' or 'idle' to their employer and coworkers after a certain amount of time away from the computer.

This extension does not collect any user data, is incredibly lightweight, and completely open source. All source files available on github here: https://github.com/perlick/inactivity-reminder.                    

拡張機能の基本情報

名前 Idle reminder Idle reminder
ID mkboaajngkkeoeoamcbcngficggmlloj
公式URL https://chrome.google.com/webstore/detail/idle-reminder/mkboaajngkkeoeoamcbcngficggmlloj
説明 Gives user notification after a certain maount of time idle.
ファイルサイズ 13.32 KB
インストール数 33
現在のバージョン 1.0
最終更新日 2020-04-07
公開日 2020-04-07
評価 1.00/5 合計 1 レビュー
開発者 Matthew Perlick
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Idle reminder",
    "description": "Gives user notification after a certain maount of time idle.",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "notifications",
        "storage",
        "idle"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Idle Reminder",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": "drink_water16.png",
        "32": "drink_water32.png",
        "48": "drink_water48.png",
        "128": "drink_water128.png"
    }
}