Procrastination Alert

Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.

Cos'è Procrastination Alert?

Procrastination Alert è un'estensione di Chrome sviluppata da Simon Li, e la sua funzione principale è "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Procrastination Alert

Scarica i file di estensione Procrastination Alert 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

                        We often spend more time mindlessly browsing YouTube, Facebook and Twitter than we want to. This extension shows you gentle reminders on those websites after 25 minutes (or a customized amount of time) to help you get back to work and avoid procrastination.                    

Informazioni di Base sull'Estensione

Nome Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
URL Ufficiale https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
Descrizione Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Dimensione del File 14.67 KB
Conteggio Installazioni 46
Versione Corrente 1.0
Ultimo Aggiornamento 2020-11-25
Data di Pubblicazione 2020-11-25
Valutazione 4.00/5 Totale 1 Valutazioni
Sviluppatore Simon Li
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Procrastination Alert",
    "version": "1.0",
    "description": "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.",
    "manifest_version": 2,
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "64": "icon-64.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": "icon-32.png",
        "default_title": "Procrastination Alert",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*",
                "*:\/\/twitter.com\/*",
                "*:\/\/www.facebook.com\/*"
            ],
            "js": [
                "script.js"
            ],
            "css": [
                "styles.css"
            ]
        }
    ]
}