Pretty Screentime

Reports Screen Time data of your favourite websites

Cos'è Pretty Screentime?

Pretty Screentime è un'estensione di Chrome sviluppata da Immanuel Ifere, e la sua funzione principale è "Reports Screen Time data of your favourite websites".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Pretty Screentime

Scarica i file di estensione Pretty Screentime in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Pretty Screentime Pretty Screentime
ID nmjaaoddacgkglmpjobghhehgmoajonp
URL Ufficiale https://chromewebstore.google.com/detail/pretty-screentime/nmjaaoddacgkglmpjobghhehgmoajonp
Descrizione Reports Screen Time data of your favourite websites
Dimensione del File 15.36 MB
Conteggio Installazioni 183
Versione Corrente 1.0.0
Ultimo Aggiornamento 2020-10-15
Data di Pubblicazione 2020-10-15
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Immanuel Ifere
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}