Page Timer
How long have I been on this page?
Что такое Page Timer?
Page Timer - это расширение Chrome, разработанное [email protected], и его основная функция - "How long have I been on this page?".
Снимки экрана расширения
Скачать файл CRX расширения Page Timer
Скачайте файлы расширений 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" } |