PageProbe - Automatic Page Monitor

Create automatic monitors for detecting and scanning changes on web pages.

什么是PageProbe - Automatic Page Monitor?

PageProbe - Automatic Page Monitor是由Nodetics开发的Chrome扩展程序,该扩展的主要功能是“Create automatic monitors for detecting and scanning changes on web pages.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载PageProbe - Automatic Page Monitor扩展crx文件

下载PageProbe - Automatic Page Monitor扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Why PageProbe?

We believe that people want to save both time and money.

We believe there are several things people want to follow on regular basis such as:
- the current price of an expensive item (such as a television) that you would like to purchase so that you can find the lowest price and the best discount to save money
- the current price of a company X stock in the stock market to find out when it is time to buy or sell in order to optimize your profits
- the current price of an item in an online auction in order to bid at the last minute "just enough"
- the number of followers you have in your social media accounts
- the number of likes your social media post has received
- the status of your web application or related software builds
- the latest new post on forum Y
- the latest top article with a specific Twitter search

We believe that people are evaluating the things they monitor based on certain conditions and when those conditions are met, they will take action. For example, the price of the television that you want will drop below certain price.

We believe that when this kind of tracking of many things happens manually every day, it is a huge waste of time and you can easily miss good discounts, buying or selling opportunities and as a result can also lose money. 

Therefore most of content monitoring should be easily automated so that an application will monitor the things you have defined, evaluates the results based on the conditions you have defined and then notifies you when those conditions are met so that you can take action.


What is PageProbe?

PageProbe WebExtension can monitor any web pages you can access on the Internet or in your company intranet. By simply right-clicking the content you see on a page, you can quickly create a tracker with optional conditions and actions and then view the status of those trackers in a simple monitoring view. 

By clicking the extension icon you can see a nice overview of all your trackers and the data retrieved. Trackers can be easily organized into groups.


Feature highlights:
- Unlimited number of trackers that can monitor any accessible page on the Internet or intranet
- Fully local solution - does not require an account
- Trackers can be organized into a tree based hierarchy of groups
- Converters allow you to easily transform strings to numbers and perform simple arithmetic on them
- Advanced conditions for trackers: contains text, doesn't contain text, contains all words, doesn't contain words, contains any words, contains any words that start with, matches regexp, is, is not, begins with text, ends with text, smaller than, smaller than or equal, greater than, greater than or equal, is going up, is going down, has changed
- Boolean logic support (combine multiple conditions)
- Case sensitive and case-insensitive matching
- Advanced actions: show desktop notification, play audio (local or URL), set color/CSS for monitor column/row, HTTP POST, IFTTT, data history logging, event log entry
- Data history logging will allow you to see with a simple chart how the value of some item has changed over time
- Export tracker table as Excel
- cron / crontab style advanced scheduling also supported!
- Live Content Scan Mode which allows monitoring changing page values in real-time!
- Discord support (post tracker results directly to a Discord channel)
- Slack support (post tracker results directly to a Slack channel)
- Telegram support
- XPath and CSS selector support                    

扩展基本信息

名称 PageProbe - Automatic Page Monitor PageProbe - Automatic Page Monitor
ID kpkcofgbohgcpjkeidodnmaokbjlnmac
官方URL https://chromewebstore.google.com/detail/pageprobe-automatic-page/kpkcofgbohgcpjkeidodnmaokbjlnmac
简介 Create automatic monitors for detecting and scanning changes on web pages.
文件大小 1.69 MB
安装次数 5,601
当前版本 1.38.1
更新时间 2022-09-24
上架时间 2020-06-18
评分 4.36/5 共56次评分
开发者 Nodetics
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://nodetics.com/nodetics-cws-privacy-policy.txt
支持的语言 id,de,en,en-GB,en-US,fr,nl,no,vi,ca,da,et,es,es-419,hr,it,lv,lt,hu,pl,ro,sk,sl,fi,sv,cs,el,sr,bg,ru,uk,iw,hi,bn,th,ar,zh-CN,zh-TW,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "PageProbe - Automatic Page Monitor",
    "short_name": "PageProbe",
    "version": "1.38.1",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "Create automatic monitors for detecting and scanning changes on web pages.",
    "icons": {
        "16": "images\/pageprobe-16.png",
        "48": "images\/pageprobe-48.png",
        "64": "images\/pageprobe-64.png",
        "128": "images\/pageprobe-128.png"
    },
    "homepage_url": "https:\/\/nodetics.com\/pageprobe",
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/",
        "https:\/\/*\/",
        "storage",
        "unlimitedStorage",
        "contextMenus",
        "notifications"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/cssselector.js",
                "js\/content.js",
                "js\/cron.js",
                "js\/inject.js",
                "js\/util.js",
                "js-lib\/jsonpath-plus.min.js"
            ],
            "css": [
                "css\/pageprobe.css"
            ],
            "run_at": "document_start"
        }
    ],
    "browser_action": {
        "default_icon": "images\/pageprobe-48.png",
        "default_title": "PageProbe"
    }
}