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.

Qu'est-ce que Ping DOM element ?

Ping DOM element est une extension Chrome développée par Peter Kiss, et sa fonction principale est "This extension is rendering a green button if the given DOM element available on the specified URL and red one when it is not.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Ping DOM element

Téléchargez les fichiers d'extension Ping DOM element au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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!                    

Informations de Base sur l'Extension

Nom Ping DOM element Ping DOM element
ID noicgnkdaioehijhiegibdoddnpnlemk
URL Officiel https://chromewebstore.google.com/detail/ping-dom-element/noicgnkdaioehijhiegibdoddnpnlemk
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.
Taille du Fichier 47.99 KB
Nombre d'Installations 42
Version Actuelle 0.2.7
Dernière Mise à Jour 2014-04-22
Date de Publication 2014-04-22
Évaluation 5.00/5 Total 1 Évaluations
Développeur Peter Kiss
Type de Paiement free
Langues Prises en Charge 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
}