Site Status Checker

Check for a websites status over time.

Site Status Checker란 무엇입니까?

Site Status Checker은(는) Jalsemgeest에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Check for a websites status over time."입니다.

확장 프로그램 스크린샷

screenshot

Site Status Checker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Site Status Checker (SSC) allows you to have Chrome worry about checking if a website is available again with a valid status code.

Simply click SSC in the toolbar when you're on a site that's not behaving, specify the status code that is happening (ex. 404, 803, etc.), specify a poll interval in seconds (default to 300 seconds or 5 minutes), and click "Start Polling".

Once the website is no longer giving that status code, it will notify you with a simple notification, clicking it will bring you back to the previously misbehaving website.

Note: The minimum poll interval is 5 seconds.  This is to try to keep the interval down to a human like level, as SSC does not want to be used for any form of illegal or mischievous activities.                    

확장 프로그램 기본 정보

이름 Site Status Checker Site Status Checker
ID kipiakkaapbigeplcjilfdhegdollhec
공식 URL https://chrome.google.com/webstore/detail/site-status-checker/kipiakkaapbigeplcjilfdhegdollhec
설명 Check for a websites status over time.
파일 크기 23.24 KB
설치 횟수 105
현재 버전 1.0.0
최근 업데이트 2017-03-22
출시 날짜 2017-03-22
평점 5.00/5 총 1 개의 평점
개발자 Jalsemgeest
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Site Status Checker",
    "short_name": "SSC",
    "version": "1.0.0",
    "description": "Check for a websites status over time.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "notifications",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "browser_action": {
        "default_popup": "info.html"
    },
    "minimum_chrome_version": "6.0.0.0",
    "icons": {
        "16": "assets\/images\/logo16.png",
        "48": "assets\/images\/logo48.png",
        "128": "assets\/images\/logo128.png"
    },
    "manifest_version": 2
}