Pretty Screentime
Reports Screen Time data of your favourite websites
Apa itu Pretty Screentime?
Pretty Screentime adalah ekstensi Chrome yang dikembangkan oleh Immanuel Ifere, dan fitur utamanya adalah "Reports Screen Time data of your favourite websites".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Pretty Screentime
Unduh file ekstensi Pretty Screentime dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Pretty Screentime |
ID | nmjaaoddacgkglmpjobghhehgmoajonp |
URL Resmi | https://chromewebstore.google.com/detail/pretty-screentime/nmjaaoddacgkglmpjobghhehgmoajonp |
Deskripsi | Reports Screen Time data of your favourite websites |
Ukuran File | 15.36 MB |
Jumlah Instalasi | 183 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2020-10-15 |
Tanggal Publikasi | 2020-10-15 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | Immanuel Ifere |
[email protected] | |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" } } |