PageProbe - Automatic Page Monitor

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

What is PageProbe - Automatic Page Monitor?

PageProbe - Automatic Page Monitor is a Chrome extension developed by Nodetics, and its main feature is "Create automatic monitors for detecting and scanning changes on web pages.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download PageProbe - Automatic Page Monitor Extension CRX File

Download PageProbe - Automatic Page Monitor extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name PageProbe - Automatic Page Monitor PageProbe - Automatic Page Monitor
ID kpkcofgbohgcpjkeidodnmaokbjlnmac
Official URL https://chromewebstore.google.com/detail/pageprobe-automatic-page/kpkcofgbohgcpjkeidodnmaokbjlnmac
Description Create automatic monitors for detecting and scanning changes on web pages.
File Size 1.69 MB
Installation Count 5,601
Current Version 1.38.1
Last Updated 2022-09-24
Publish Date 2020-06-18
Rating 4.36/5 Total 56 Ratings
Developer Nodetics
Email [email protected]
Payment Type free
Privacy Policy Page URL https://nodetics.com/nodetics-cws-privacy-policy.txt
Supported Languages 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"
    }
}