Not Now

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

Qu'est-ce que Not Now ?

Not Now est une extension Chrome développée par https://seferdesign.com, et sa fonction principale est "Minimize distractions by blocking any web site for a set period of time.".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Not Now

Téléchargez les fichiers d'extension Not Now au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Not Now Not Now
ID bhnjpdlfcopbclhlflmoodpdmlplcajb
URL Officiel https://chromewebstore.google.com/detail/not-now/bhnjpdlfcopbclhlflmoodpdmlplcajb
Description Minimize distractions by blocking any web site for a set period of time.
Taille du Fichier 643 KB
Nombre d'Installations 51
Version Actuelle 1.1.3
Dernière Mise à Jour 2020-03-14
Date de Publication 2020-03-14
Évaluation 5.00/5 Total 2 Évaluations
Développeur https://seferdesign.com
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://seferdesign.com/not-now/
URL de la Page d'Aide https://seferdesign.com/not-now/
Langues Prises en Charge 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"
    ]
}