Hoasted Check

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

O que é Hoasted Check?

Hoasted Check é uma extensão do Chrome desenvolvida por https://hoasted.com, e sua principal característica é "Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hoasted Check

Baixe arquivos de extensão Hoasted Check no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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).                    

Informações Básicas da Extensão

Nome Hoasted Check Hoasted Check
ID lpeaffpngcncaefnegoomkcboiojdfld
URL Oficial https://chromewebstore.google.com/detail/hoasted-check/lpeaffpngcncaefnegoomkcboiojdfld
Descrição Shows an blue cloud in the omnibar when you are browsing a site that is hosted on Hoasted
Tamanho do Arquivo 66.54 KB
Contagem de Instalações 189
Versão Atual 1.1.4
Última Atualização 2023-12-04
Data de Publicação 2020-06-16
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor https://hoasted.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://www.hoasted.com/
URL da Página de Ajuda https://www.hoasted.com/support
URL da Página de Política de Privacidade https://www.hoasted.com/AV.pdf
Idiomas Suportados 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';"
}