Procrastination Alert

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

Co je Procrastination Alert?

Procrastination Alert je rozšíření Chrome vyvinuté Simon Li, a jeho hlavní funkcí je „Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Procrastination Alert

Stáhněte si soubory rozšíření Procrastination Alert ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
Oficiální URL https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
Popis Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Velikost souboru 14.67 KB
Počet instalací 46
Aktuální Verze 1.0
Poslední Aktualizace 2020-11-25
Datum Vydání 2020-11-25
Hodnocení 4.00/5 Celkem 1 Hodnocení
Vývojář Simon Li
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}