Time Saver

Block a specific set of sites during specific periods of the week using a JSON formatted string.

Time Saver란 무엇입니까?

Time Saver은(는) Curtis Huebner에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Block a specific set of sites during specific periods of the week using a JSON formatted string."입니다.

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

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

확장 프로그램 사용 설명서

                        An extension that blocks certain URLs for certain parts of the week. For instance to block "www.evil.com" and "www.distraction.com" from 1:30AM Monday to 4:37PM Friday and any site that has "fun" in the url on Sunday, the filter would be:

{
    "times": [
        {
            "endDay": 5,
            "endHour": 16,
            "endMinute": 37,
            "startDay": 1,
            "startHour": 1,
            "startMinute": 30,
            "urls": [
                "www.evil.com",
                "www.distraction.com"
            ]
        },
        {
            "endDay": 1,
            "endHour": 0,
            "endMinute": 0,
            "startDay": 0,
            "startHour": 18,
            "startMinute": 0,
            "urls": [
                "fun"
            ]
        }
    ]
}                    

확장 프로그램 기본 정보

이름 Time Saver Time Saver
ID mbeodbihdnhkgebepkmlenepjfoanfcj
공식 URL https://chrome.google.com/webstore/detail/time-saver/mbeodbihdnhkgebepkmlenepjfoanfcj
설명 Block a specific set of sites during specific periods of the week using a JSON formatted string.
파일 크기 9.06 KB
설치 횟수 37
현재 버전 0.0.2
최근 업데이트 2017-05-25
출시 날짜 2017-05-25
개발자 Curtis Huebner
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Time Saver",
    "description": "Block a specific set of sites during specific periods of the week using a JSON formatted string.",
    "version": "0.0.2",
    "background": {
        "scripts": [
            "redirect.js"
        ]
    },
    "options_page": "options.html",
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking",
        "storage"
    ]
}