Social Media / Web Time Tracker

Tells you how much time you're spending/wasting on social media and other websites.

什麼是Social Media / Web Time Tracker?

Social Media / Web Time Tracker是由https://toolsofourtools.org開發的Chrome擴展程式,該擴展的主要功能是“Tells you how much time you're spending/wasting on social media and other websites.”。

擴展截圖

screenshot
screenshot

下載Social Media / Web Time Tracker擴展crx文件

下載Social Media / Web Time Tracker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Have you ever wondered how much time you are spending on certain unnamed social media sites? This extension will let you know, showing a pie chart of your browser usage today, yesterday, last week, etc.

It works by tracking which browser tab is currently focused, or optionally, which tab(s) are visible (open and not minimized). It also will report time the browser is open but not focused. (Like if you're using another program altogether.)

This plugin *never* sends data anywhere. Everything stays local on your computer. You can inspect the source code here: https://github.com/djacobow/whttg

Versions:
0.0.1 -- initial release, proof of concept
0.0.2 -- minor bugs
0.0.3 -- output formatting
0.0.4 -- column chart option
0.0.5 -- icon, formatting
0.0.6/7 -- change name for better SEO
0.0.8 -- change name and remove references to a certain social media site after a take-down notice
0.0.9 -- remove google charts and replace with chartjs because of Google charts' dynamic loading and eval()                    

擴展基本資訊

名稱 Social Media / Web Time Tracker Social Media / Web Time Tracker
ID egnaiijcamledealofbegimjfkcmmolg
官方網址 https://chromewebstore.google.com/detail/social-media-web-time-tra/egnaiijcamledealofbegimjfkcmmolg
簡介 Tells you how much time you're spending/wasting on social media and other websites.
檔案大小 775 KB
安裝次數 26
目前版本 0.0.9
更新時間 2018-04-27
上架時間 2018-04-26
開發者 https://toolsofourtools.org
電子郵箱 [email protected]
付費類型 free
擴展官網 https://toolsofourtools.org/whttg-about
隱私政策頁面URL http://toolsofourtools.org/privacy
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Social Media \/ Web Time Tracker",
    "short_name": "Social Media Time Tracker",
    "description": "Tells you how much time you're spending\/wasting on social media and other websites.",
    "author": "Dave Jacobowitz",
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "version": "0.0.9",
    "permissions": [
        "storage",
        "alarms",
        "tabs"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "timekeeper.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "icons\/ic2-128.png"
        },
        "default_title": "Configure Web Time Tracker",
        "default_popup": "options.html"
    },
    "icons": {
        "128": "icons\/ic2-128.png",
        "200": "icons\/ic2-200.png",
        "400": "icons\/ic2-400.png"
    },
    "applications": {
        "gecko": {
            "id": "@whttg"
        }
    },
    "web_accessible_resources": [
        "empty_image.png"
    ]
}