PingER

Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.

O que é PingER?

PingER é uma extensão do Chrome desenvolvida por Kishore Ithadi, e sua principal característica é "Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão PingER

Baixe arquivos de extensão PingER 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

                        Pinger will run in the background when the browser is closed. This extension will send an email and chrome desktop notification once your entities state is changed. You can also customize the interval of status check.                    

Informações Básicas da Extensão

Nome PingER PingER
ID jcoegkmjenfpgmkoeomahaioddaajfdk
URL Oficial https://chrome.google.com/webstore/detail/pinger/jcoegkmjenfpgmkoeomahaioddaajfdk
Descrição Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.
Tamanho do Arquivo 207 KB
Contagem de Instalações 84
Versão Atual 0.0.0.3
Última Atualização 2019-11-19
Data de Publicação 2019-11-15
Classificação 5.00/5 Total de 4 Avaliações
Desenvolvedor Kishore Ithadi
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/KishoreIthadi/Pinger
URL da Página de Ajuda https://github.com/KishoreIthadi/Pinger/issues
URL da Página de Política de Privacidade https://github.com/KishoreIthadi/Pinger/blob/master/LICENSE
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PingER",
    "short_name": "PingER",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Pinger is a simple but elegant chrome extension to monitor the status of a remote server, website or a remote DB.",
    "version": "0.0.0.3",
    "icons": {
        "16": "images\/pingerX16.png",
        "32": "images\/pingerX32.png",
        "48": "images\/pingerX48.png",
        "128": "images\/pingerX128.png"
    },
    "browser_action": {
        "default_icon": "images\/pingerX32.png",
        "default_popup": "pinger.html"
    },
    "background": {
        "scripts": [
            "scripts\/vendorjs.min.js",
            "scripts\/common.min.js",
            "scripts\/background.min.js"
        ]
    },
    "permissions": [
        "background",
        "notifications",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}