Hoasted Check

Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted

Hoasted Check란 무엇입니까?

Hoasted Check은(는) https://hoasted.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted"입니다.

확장 프로그램 스크린샷

screenshot

Hoasted Check 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This developer tool shows the IP address of the website you are currently viewing. It does not listen to DNS, but checks from which IP address the current website resources are loaded. A quick and easy tool for developers, designers and system admins. Furthermore, Hoasted Check shows a blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted.

Hoasted is an international web hosting company that focusses on delivering the best in class service and top notch performance. Standard packages come equipped with twice the performance compared to other hosting companies. Furthermore we provide companies, organizations and individuals services that help them in squeezing the most out of their hosting. Services include: Domain name registration, Wordpress hosting, Linux hosting, Reseller hosting, Windows hosting and Virtual Private Servers (VPS).                    

확장 프로그램 기본 정보

이름 Hoasted Check Hoasted Check
ID lpeaffpngcncaefnegoomkcboiojdfld
공식 URL https://chromewebstore.google.com/detail/hoasted-check/lpeaffpngcncaefnegoomkcboiojdfld
설명 Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted
파일 크기 66.54 KB
설치 횟수 189
현재 버전 1.1.4
최근 업데이트 2023-12-04
출시 날짜 2020-06-16
평점 3.67/5 총 3 개의 평점
개발자 https://hoasted.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.hoasted.com/
도움말 페이지 URL https://www.hoasted.com/support
개인정보 보호 정책 페이지 URL https://www.hoasted.com/AV.pdf
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hoasted Check",
    "description": "Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted",
    "version": "1.1.4",
    "manifest_version": 2,
    "icons": {
        "128": "images\/orange-cloud-128.png"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "webRequest",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "page_action": {
        "default_title": "Hoasted"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "options_page": "options.html",
    "content_security_policy": "object-src 'self'; script-src 'self' 'unsafe-eval';"
}