Page Timer
How long have I been on this page?
Page Timer là gì?
Page Timer là một tiện ích mở rộng Chrome được phát triển bởi [email protected], và tính năng chính của nó là "How long have I been on this page?".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Page Timer
Tải xuống các tệp mở rộng Page Timer dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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/
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Page Timer |
ID | enljfpkeopdppbphgadibdpodgjhmabm |
URL Chính Thức | https://chromewebstore.google.com/detail/page-timer/enljfpkeopdppbphgadibdpodgjhmabm |
Mô tả | How long have I been on this page? |
Kích Thước Tệp | 32.27 KB |
Số Lần Cài Đặt | 7,000 |
Phiên Bản Hiện Tại | 1.7 |
Cập Nhật Lần Cuối | 2017-10-18 |
Ngày Phát Hành | 2017-10-18 |
Đánh Giá | 4.67/5 Tổng số 12 Đánh Giá |
Nhà Phát Triển | [email protected] |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/google/page-timer/ |
URL Trang Chính Sách Bảo Mật | https://github.com/google/page-timer/blob/master/PRIVACY.md |
Ngôn Ngữ Được Hỗ Trợ | 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" } |