Not Now

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

Not Nowとは何ですか?

Not Nowはhttps://seferdesign.comによって開発されたChromeの拡張機能で、その主な機能は「Minimize distractions by blocking any web site for a set period of time.」です。

拡張機能のスクリーンショット

screenshot
screenshot

Not Now拡張機能のCRXファイルをダウンロード

Not Now拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Not Now Not Now
ID bhnjpdlfcopbclhlflmoodpdmlplcajb
公式URL https://chromewebstore.google.com/detail/not-now/bhnjpdlfcopbclhlflmoodpdmlplcajb
説明 Minimize distractions by blocking any web site for a set period of time.
ファイルサイズ 643 KB
インストール数 51
現在のバージョン 1.1.3
最終更新日 2020-03-14
公開日 2020-03-14
評価 5.00/5 合計 2 レビュー
開発者 https://seferdesign.com
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://seferdesign.com/not-now/
ヘルプページのURL https://seferdesign.com/not-now/
対応言語 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"
    ]
}