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
官方網址 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
電子郵箱 [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"
    ]
}