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によって開発されたChromeの拡張機能で、その主な機能は「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

Ping DOM element拡張機能のCRXファイルをダウンロード

Ping DOM element拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
}