Ping DOM element

This extension is rendering a green button if the given DOM element available on the specified URL and red one when it is not.

O que é Ping DOM element?

Ping DOM element é uma extensão do Chrome desenvolvida por Peter Kiss, e sua principal característica é "This extension is rendering a green button if the given DOM element available on the specified URL and red one when it is not.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Ping DOM element

Baixe arquivos de extensão Ping DOM element 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

                        The extension checks the given URL in the background periodically. It uses chrome's alarm API to do this so it does not consume to much resources.
The frequency is around 1 request / minute. You can check for a specific element on the page too, doing this with the "elementToCheck" field, which accepts jQuery selectors. For example you can check the page http://www.bbc.co.uk/sport/0/football/ for having "Brighton" in the headlines. Where you should specify elementToCheck to div#more-new-headlines:contains(Brighton) . That is it. Enjoy using this tool!                    

Informações Básicas da Extensão

Nome Ping DOM element Ping DOM element
ID noicgnkdaioehijhiegibdoddnpnlemk
URL Oficial https://chromewebstore.google.com/detail/ping-dom-element/noicgnkdaioehijhiegibdoddnpnlemk
Descrição This extension is rendering a green button if the given DOM element available on the specified URL and red one when it is not.
Tamanho do Arquivo 47.99 KB
Contagem de Instalações 42
Versão Atual 0.2.7
Última Atualização 2014-04-22
Data de Publicação 2014-04-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Peter Kiss
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Ping DOM element",
    "description": "This extension is rendering a green button if the given DOM element available on the specified URL and red one when it is not.",
    "version": "0.2.7",
    "author": "Peter Kiss ",
    "icons": {
        "19": "src\/main\/icons\/idle.png",
        "48": "src\/main\/icons\/icon48.png",
        "128": "src\/main\/icons\/icon128.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "alarms"
    ],
    "browser_action": {
        "default_icon": "src\/main\/icons\/idle.png",
        "default_title": "Site checker",
        "default_popup": "src\/main\/popup.html"
    },
    "background": {
        "persistent": false,
        "page": "src\/main\/background.html"
    },
    "web_accessible_resources": [
        "src\/main\/icons\/*.png",
        "src\/main\/js\/*.js",
        "src\/main\/*.html"
    ],
    "offline_enabled": false
}