Procrastination Alert

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

O que é Procrastination Alert?

Procrastination Alert é uma extensão do Chrome desenvolvida por Simon Li, e sua principal característica é "Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Procrastination Alert

Baixe arquivos de extensão Procrastination Alert no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Procrastination Alert Procrastination Alert
ID icimifdanbeeibnjegkbeeppepnljhbi
URL Oficial https://chromewebstore.google.com/detail/procrastination-alert/icimifdanbeeibnjegkbeeppepnljhbi
Descrição Gentle reminders displayed on YouTube, Facebook and Twitter to help you beat procrastination.
Tamanho do Arquivo 14.67 KB
Contagem de Instalações 46
Versão Atual 1.0
Última Atualização 2020-11-25
Data de Publicação 2020-11-25
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor Simon Li
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
            ]
        }
    ]
}