Not Now

Minimize distractions by blocking any web site for a set period of time.

O que é Not Now?

Not Now é uma extensão do Chrome desenvolvida por https://seferdesign.com, e sua principal característica é "Minimize distractions by blocking any web site for a set period of time.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Not Now

Baixe arquivos de extensão Not Now 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

                        For many, staying focused during the work day is difficult. We've built a simple tool to help minimize the countless distractions we're faced with on a daily basis. This free Google Chrome extension allows you to easily block any web site for a set period of time.

Need to finish that presentation before lunchtime? Block facebook.com for the next hour. Spend too much time checking your portfolio during the week? Block tdameritrade.com Monday through Friday, 9 to 5. The productivity possibilities are endless!                    

Informações Básicas da Extensão

Nome Not Now Not Now
ID bhnjpdlfcopbclhlflmoodpdmlplcajb
URL Oficial https://chromewebstore.google.com/detail/not-now/bhnjpdlfcopbclhlflmoodpdmlplcajb
Descrição Minimize distractions by blocking any web site for a set period of time.
Tamanho do Arquivo 643 KB
Contagem de Instalações 51
Versão Atual 1.1.3
Última Atualização 2020-03-14
Data de Publicação 2020-03-14
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://seferdesign.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://seferdesign.com/not-now/
URL da Página de Ajuda https://seferdesign.com/not-now/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Not Now",
    "short_name": "Not Now",
    "version": "1.1.3",
    "description": "Minimize distractions by blocking any web site for a set period of time.",
    "options_page": "pages\/settings.html",
    "icons": {
        "128": "img\/icon-color.png",
        "48": "img\/icon-color.png",
        "16": "img\/icon-color.png"
    },
    "browser_action": {
        "default_icon": "img\/icon-color.png",
        "default_title": "Not Now",
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "js\/common.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [],
            "js": [
                "js\/common.js",
                "js\/checker.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "css\/*",
        "js\/*",
        "pages\/*",
        "img\/*"
    ],
    "permissions": [
        "tabs",
        "activeTab",
        "background",
        "storage",
        "alarms"
    ]
}