Page Timer

How long have I been on this page?

什麼是Page Timer?

Page Timer是由[email protected]開發的Chrome擴展程式,該擴展的主要功能是“How long have I been on this page?”。

擴展截圖

screenshot

下載Page Timer擴展crx文件

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

擴展使用說明

                        Ever open an email, do a task, then wonder how long that took?  Install this, then just look at the timer next to the URL bar.  It records how long it's been since the URL has changed.  Click to see the last few pages you were on and how long you spent there.

All data is kept locally in ram; no data is sent over the network or saved to disk.


New in version 1.7 (Oct 2017): Display seconds.


Source code:
https://github.com/google/page-timer/                    

擴展基本資訊

名稱 Page Timer Page Timer
ID enljfpkeopdppbphgadibdpodgjhmabm
官方網址 https://chromewebstore.google.com/detail/page-timer/enljfpkeopdppbphgadibdpodgjhmabm
簡介 How long have I been on this page?
檔案大小 32.27 KB
安裝次數 7,000
目前版本 1.7
更新時間 2017-10-18
上架時間 2017-10-18
評分 4.67/5 共 12 次評分
開發者 [email protected]
付費類型 free
擴展官網 https://github.com/google/page-timer/
隱私政策頁面URL https://github.com/google/page-timer/blob/master/PRIVACY.md
支援的語言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Page Timer",
    "description": "How long have I been on this page?",
    "version": "1.7",
    "author": "[email protected]",
    "permissions": [
        "tabs"
    ],
    "icons": {
        "16": "clock16.png",
        "48": "clock48.png",
        "128": "clock128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "browser-action-19.png",
            "38": "browser-action-38.png"
        }
    },
    "background": {
        "scripts": [
            "common.js",
            "background.js"
        ],
        "persistent": true
    },
    "options_page": "options.html"
}