Pretty Screentime

Reports Screen Time data of your favourite websites

What is Pretty Screentime?

Pretty Screentime is a Chrome extension developed by Immanuel Ifere, and its main feature is "Reports Screen Time data of your favourite websites".

Extension Screenshots

screenshot
screenshot
screenshot

Download Pretty Screentime Extension CRX File

Download Pretty Screentime extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Pretty Screentime Pretty Screentime
ID nmjaaoddacgkglmpjobghhehgmoajonp
Official URL https://chromewebstore.google.com/detail/pretty-screentime/nmjaaoddacgkglmpjobghhehgmoajonp
Description Reports Screen Time data of your favourite websites
File Size 15.36 MB
Installation Count 183
Current Version 1.0.0
Last Updated 2020-10-15
Publish Date 2020-10-15
Rating 5.00/5 Total 3 Ratings
Developer Immanuel Ifere
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}