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?」です。
拡張機能のスクリーンショット
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 |
ID | enljfpkeopdppbphgadibdpodgjhmabm |
公式URL | 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" } |