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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } |