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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}