Pretty Screentime
Reports Screen Time data of your favourite websites
Co to jest Pretty Screentime?
Pretty Screentime to rozszerzenie Chrome opracowane przez Immanuel Ifere, a jego główną funkcją jest „Reports Screen Time data of your favourite websites”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Pretty Screentime
Pobierz pliki rozszerzeń Pretty Screentime w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Pretty Screentime |
ID | nmjaaoddacgkglmpjobghhehgmoajonp |
Oficjalny URL | https://chromewebstore.google.com/detail/pretty-screentime/nmjaaoddacgkglmpjobghhehgmoajonp |
Opis | Reports Screen Time data of your favourite websites |
Rozmiar pliku | 15.36 MB |
Liczba instalacji | 183 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2020-10-15 |
Data Publikacji | 2020-10-15 |
Ocena | 5.00/5 Łącznie 3 Oceny |
Deweloper | Immanuel Ifere |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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" } } |