Tab watcher

Monitors tabs for content changes and pushes a notification on detected change.

什麼是Tab watcher?

Tab watcher是由Snackbits開發的Chrome擴展程式,該擴展的主要功能是“Monitors tabs for content changes and pushes a notification on detected change.”。

擴展截圖

screenshot
screenshot

下載Tab watcher擴展crx文件

下載Tab watcher擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        With this extension you can get notified of content changes on a site.
Just define a page check interval and a DOM selector wich should be monitored.
You can define wether the page should check for content changes after a page reload or live without reloading the page. Latter is useful for Ajax content changes or something else.
You will get a Chrome notification if a change was detected.

*****************************
RELEASE NOTES
*****************************
v.1.2.1
- Added check timer badge to action button

v.1.1.1
- Made some code cleanup and optimizations

v.1.1.0
- Added live DOM check without reload                    

擴展基本資訊

名稱 Tab watcher Tab watcher
ID kmcfjcifbafmfhbhohelcpapkdnhbgfk
官方網址 https://chromewebstore.google.com/detail/tab-watcher/kmcfjcifbafmfhbhohelcpapkdnhbgfk
簡介 Monitors tabs for content changes and pushes a notification on detected change.
檔案大小 61.33 KB
安裝次數 295
目前版本 1.2.1
更新時間 2016-02-03
上架時間 2016-02-03
評分 4.25/5 共 8 次評分
開發者 Snackbits
電子郵箱 [email protected]
付費類型 free
支援的語言 de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "short_name": "__MSG_extName__",
    "description": "__MSG_extDescription__",
    "version": "1.2.1",
    "default_locale": "en",
    "author": "WebIT-Service",
    "minimum_chrome_version": "20",
    "icons": {
        "16": "assets\/icon-16x16.png",
        "19": "assets\/icon-19x19.png",
        "32": "assets\/icon-32x32.png",
        "38": "assets\/icon-38x38.png",
        "48": "assets\/icon-48x48.png",
        "128": "assets\/icon-128x128.png"
    },
    "background": {
        "scripts": [
            "js\/background.min.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "storage",
        "notifications",
        "*:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/script.min.js"
            ]
        }
    ],
    "browser_action": {
        "default_title": "__MSG_actionTitle__",
        "default_icon": {
            "19": "assets\/icon-19x19.png",
            "38": "assets\/icon-38x38.png"
        },
        "default_popup": "html\/options.html"
    },
    "options_page": "html\/options.html",
    "options_ui": {
        "chrome_style": true,
        "page": "html\/options.html",
        "open_in_tab": false
    }
}