Web Timer

Keep track of how you spend your time on the web.

Web Timerとは何ですか?

Web TimerはDKによって開発されたChromeの拡張機能で、その主な機能は「Keep track of how you spend your time on the web.」です。

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

screenshot

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

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

拡張機能の使用方法

                        Web Timer is a simple and intuitive extension that lets you keep track of how you're spending your time on the web.

Web Timer keeps track of the tab that you are actively using and updates its stats every 3 seconds. 

Features:
- Helps you visualize the time you're spending by displaying the data in a pie chart
- Keeps track of stats for today, daily average, and all-time
- Stops counting if your machine is idle for more than 30 seconds
- Only counts time when Chrome has focus
- Shows the number of minutes spent on current website over the icon
- Easily share your Web Timer stats with friends

Instructions:
- Use the options page to avoid tracking certain sites

Note: I originally sold the extension (https://chrome.google.com/webstore/detail/web-timer/ggnjbdfgigejghknieofeahaknkjafim?hl=en) but it seems that the buyer is injecting redirects and other suspicious behavior so I'm uploading a clean copy. The source code for this extension is at https://github.com/dskang/webtimer                    

拡張機能の基本情報

名前 Web Timer Web Timer
ID efkkjffdefaaioagghcaflicdajfhceo
公式URL https://chromewebstore.google.com/detail/web-timer/efkkjffdefaaioagghcaflicdajfhceo
説明 Keep track of how you spend your time on the web.
ファイルサイズ 24.12 KB
インストール数 8,199
現在のバージョン 1.4.9
最終更新日 2020-08-07
公開日 2017-07-25
評価 4.36/5 合計 36 レビュー
開発者 DK
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Timer",
    "version": "1.4.9",
    "description": "Keep track of how you spend your time on the web.",
    "icons": {
        "128": "icon_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "idle",
        "tabs"
    ],
    "browser_action": {
        "default_title": "Web Timer",
        "default_icon": "icon_19.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/www.gstatic.com; object-src 'self'"
}