Procrastination Alert

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

Hvad er Procrastination Alert?

Procrastination Alert er en Chrome-udvidelse udviklet af Simon Li, og dens hovedfunktion er "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Procrastination Alert-udvidelses-CRX-fil

Download Procrastination Alert-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
Officiel URL https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
Beskrivelse Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Filstørrelse 14.67 KB
Antal Installationer 46
Nuværende Version 1.0
Senest Opdateret 2020-11-25
Udgivelsesdato 2020-11-25
Bedømmelse 4.00/5 Samlet 1 Bedømmelser
Udvikler Simon Li
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
            ]
        }
    ]
}