GPXPlus Notifier

Get notifications from GPXPlus when you're offline.

GPXPlus Notifier là gì?

GPXPlus Notifier là một tiện ích mở rộng Chrome được phát triển bởi http://gpxplus.net, và tính năng chính của nó là "Get notifications from GPXPlus when you're offline.".

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

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GPXPlus Notifier

Tải xuống các tệp mở rộng GPXPlus Notifier 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

                        A simple extension to get notifications from GPXPlus.net, even when you're offline.  Find out if your eggs are ready to hatch or if your Vs. Seeker battle is done and much more without having to lift a finger!

Requires an account on GPXPlus.net/GTSPlus.net to use.  GPXPlus is a fun and free way to adopt, raise and collect Pokemon, and much more!                    

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

Tên GPXPlus Notifier GPXPlus Notifier
ID bikgbcleglmoiiadddnnmmcekkfkhkdo
URL Chính Thức https://chrome.google.com/webstore/detail/gpxplus-notifier/bikgbcleglmoiiadddnnmmcekkfkhkdo
Mô tả Get notifications from GPXPlus when you're offline.
Kích Thước Tệp 43.37 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 0.90
Cập Nhật Lần Cuối 2016-11-25
Ngày Phát Hành 2016-11-25
Đánh Giá 4.77/5 Tổng số 43 Đánh Giá
Nhà Phát Triển http://gpxplus.net
Loại Thanh Toán free
Trang Web Mở Rộng https://gpx.plus/
URL Trang Trợ Giúp https://gpx.plus/help/notifier
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPXPlus Notifier",
    "version": "0.90",
    "description": "Get notifications from GPXPlus when you're offline.",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.gpx.plus\/*"
            ],
            "css": [
                "hidenotification.css"
            ]
        }
    ],
    "background": {
        "page": "background.html"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "permissions": [
        "https:\/\/*.gpx.plus\/*",
        "notifications"
    ],
    "options_page": "options.html",
    "manifest_version": 2
}