Pretty Screentime
Reports Screen Time data of your favourite websites
Pretty Screentime क्या है?
Pretty Screentime Immanuel Ifere द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Reports Screen Time data of your favourite websites"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pretty Screentime एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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" } } |