Time Blocked

Block yourself from any website at certain times of the day.

Time Blocked란 무엇입니까?

Time Blocked은(는) https://www.tyrotoxism.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block yourself from any website at certain times of the day."입니다.

확장 프로그램 스크린샷

screenshot

Time Blocked 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This plugin allows you to be more productive, and it doesn't waste your time while doing so.

You can with ease dictate the time you want to be blocked from a website, and even allow yourself in only on weekends so you don't unblock yourself, and "forget" to block yourself again!

Feature suggestions are encouraged, but I will only implement features which makes this plugin simpler to use.

This plugin was made on a request: http://www.reddit.com/r/SomebodyMakeThis/comments/1igrkt/a_chrome_extension_that_prevents_me_from_visiting/                    

확장 프로그램 기본 정보

이름 Time Blocked Time Blocked
ID kjnepmakcgjbllfnpdnppjpnfpoelabn
공식 URL https://chromewebstore.google.com/detail/time-blocked/kjnepmakcgjbllfnpdnppjpnfpoelabn
설명 Block yourself from any website at certain times of the day.
파일 크기 68.39 KB
설치 횟수 60
현재 버전 1.2.3
최근 업데이트 2013-07-27
출시 날짜 2013-07-27
평점 4.00/5 총 1 개의 평점
개발자 https://www.tyrotoxism.net
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time Blocked",
    "description": "Block yourself from any website at certain times of the day.",
    "version": "1.2.3",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "icons": {
        "16": "icons\/icon-16.png",
        "48": "icons\/icon-48.png",
        "128": "icons\/icon-128.png"
    },
    "background": {
        "scripts": [
            "javascript\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "javascript\/content-script.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "page_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        },
        "default_title": "Time Blocked",
        "default_popup": "popup.html"
    }
}