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.

Ping DOM element क्या है?

Ping DOM element Peter Kiss द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension is rendering a green button if the given DOM element available on the specified URL and red one when it is not."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Ping DOM element एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Ping DOM element Ping DOM element
ID noicgnkdaioehijhiegibdoddnpnlemk
आधिकारिक URL https://chromewebstore.google.com/detail/ping-dom-element/noicgnkdaioehijhiegibdoddnpnlemk
विवरण This extension is rendering a green button if the given DOM element available on the specified URL and red one when it is not.
फ़ाइल का आकार 47.99 KB
स्थापना संख्या 42
वर्तमान संस्करण 0.2.7
अंतिम अपडेट 2014-04-22
प्रकाशन तिथि 2014-04-22
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Peter Kiss
भुगतान के प्रकार free
समर्थित भाषाएँ 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
}