Pretty Screentime
Reports Screen Time data of your favourite websites
Что такое Pretty Screentime?
Pretty Screentime - это расширение Chrome, разработанное Immanuel Ifere, и его основная функция - "Reports Screen Time data of your favourite websites".
Снимки экрана расширения
Скачать файл CRX расширения Pretty Screentime
Скачайте файлы расширений Pretty Screentime в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Reports Screen Time data of your favourite websites. Initially built for my friends and I, I hope it can be of use to you and your productivity. It's very easy to use.
Основная информация о расширении
Название | Pretty Screentime |
ID | nmjaaoddacgkglmpjobghhehgmoajonp |
Официальный URL | https://chromewebstore.google.com/detail/pretty-screentime/nmjaaoddacgkglmpjobghhehgmoajonp |
Описание | Reports Screen Time data of your favourite websites |
Размер файла | 15.36 MB |
Количество установок | 183 |
Текущая Версия | 1.0.0 |
Последнее Обновление | 2020-10-15 |
Дата публикации | 2020-10-15 |
Рейтинг | 5.00/5 Всего 3 оценок |
Разработчик | Immanuel Ifere |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Pretty Screentime", "description": "Reports Screen Time data of your favourite websites", "version": "1.0.0", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/*.netflix.com\/*", "*:\/\/*.facebook.com\/*", "*:\/\/*.instagram.com\/*", "*:\/\/*.twitter.com\/*", "*:\/\/*.medium.com\/*", "*:\/\/*.linkedin.com\/*", "*:\/\/*.slack.com\/*", "*:\/\/*.spotify.com\/*", "*:\/\/*.reddit.com\/*", "*:\/\/*.twitch.com\/*", "*:\/\/*.tumblr.com\/*", "*:\/\/*.discord.com\/*", "*:\/\/*.amazon.com\/*", "*:\/\/*.stackoverflow.com\/*", "*:\/\/*.leetcode.com\/*", "*:\/\/*.pinterest.com\/*", "*:\/\/*.quora.com\/*" ], "js": [ "server.js", "jquery-3.5.1.js" ] } ], "background": { "scripts": [ "append.js" ] }, "icons": { "16": "20.png", "48": "48.png", "128": "128.png" }, "permissions": [ "storage" ], "browser_action": { "default_icon": "20.png", "default_popup": "index.html" } } |