PageProbe - Automatic Page Monitor

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

PageProbe - Automatic Page Monitor là gì?

PageProbe - Automatic Page Monitor là một tiện ích mở rộng Chrome được phát triển bởi Nodetics, và tính năng chính của nó là "Create automatic monitors for detecting and scanning changes on web pages.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PageProbe - Automatic Page Monitor

Tải xuống các tệp mở rộng PageProbe - Automatic Page Monitor dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PageProbe - Automatic Page Monitor PageProbe - Automatic Page Monitor
ID kpkcofgbohgcpjkeidodnmaokbjlnmac
URL Chính Thức https://chromewebstore.google.com/detail/pageprobe-automatic-page/kpkcofgbohgcpjkeidodnmaokbjlnmac
Mô tả Create automatic monitors for detecting and scanning changes on web pages.
Kích Thước Tệp 1.69 MB
Số Lần Cài Đặt 5,601
Phiên Bản Hiện Tại 1.38.1
Cập Nhật Lần Cuối 2022-09-24
Ngày Phát Hành 2020-06-18
Đánh Giá 4.36/5 Tổng số 56 Đánh Giá
Nhà Phát Triển Nodetics
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://nodetics.com/nodetics-cws-privacy-policy.txt
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}