Not Now

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

Was ist Not Now?

Not Now ist eine Chrome-Erweiterung, die von https://seferdesign.com entwickelt wurde, und ihr Hauptmerkmal ist "Minimize distractions by blocking any web site for a set period of time.".

Erweiterungsscreenshots

screenshot
screenshot

Not Now-Erweiterungs-CRX-Datei herunterladen

Laden Sie Not Now-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name Not Now Not Now
ID bhnjpdlfcopbclhlflmoodpdmlplcajb
Offizielle URL https://chromewebstore.google.com/detail/not-now/bhnjpdlfcopbclhlflmoodpdmlplcajb
Beschreibung Minimize distractions by blocking any web site for a set period of time.
Dateigröße 643 KB
Installationsanzahl 51
Aktuelle Version 1.1.3
Letztes Update 2020-03-14
Veröffentlichungsdatum 2020-03-14
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://seferdesign.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://seferdesign.com/not-now/
Hilfeseite URL https://seferdesign.com/not-now/
Unterstützte Sprachen 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"
    ]
}