PageProbe - Automatic Page Monitor

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

¿Qué es PageProbe - Automatic Page Monitor?

PageProbe - Automatic Page Monitor es una extensión de Chrome desarrollada por Nodetics, y su función principal es "Create automatic monitors for detecting and scanning changes on web pages.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión PageProbe - Automatic Page Monitor

Descarga archivos de extensión PageProbe - Automatic Page Monitor en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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                    

Información Básica de la Extensión

Nombre PageProbe - Automatic Page Monitor PageProbe - Automatic Page Monitor
ID kpkcofgbohgcpjkeidodnmaokbjlnmac
URL Oficial https://chromewebstore.google.com/detail/pageprobe-automatic-page/kpkcofgbohgcpjkeidodnmaokbjlnmac
Descripción Create automatic monitors for detecting and scanning changes on web pages.
Tamaño del Archivo 1.69 MB
Cantidad de Instalaciones 5,601
Versión Actual 1.38.1
Última Actualización 2022-09-24
Fecha de Publicación 2020-06-18
Calificación 4.36/5 Total de 56 Calificaciones
Desarrollador Nodetics
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://nodetics.com/nodetics-cws-privacy-policy.txt
Idiomas Soportados 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"
    }
}