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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}