GPXPlus Notifier

Get notifications from GPXPlus when you're offline.

Co to jest GPXPlus Notifier?

GPXPlus Notifier to rozszerzenie Chrome opracowane przez http://gpxplus.net, a jego główną funkcją jest „Get notifications from GPXPlus when you're offline.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia GPXPlus Notifier

Pobierz pliki rozszerzeń GPXPlus Notifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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!                    

Podstawowe informacje o rozszerzeniu

Nazwa GPXPlus Notifier GPXPlus Notifier
ID bikgbcleglmoiiadddnnmmcekkfkhkdo
Oficjalny URL https://chrome.google.com/webstore/detail/gpxplus-notifier/bikgbcleglmoiiadddnnmmcekkfkhkdo
Opis Get notifications from GPXPlus when you're offline.
Rozmiar pliku 43.37 KB
Liczba instalacji 1,000
Aktualna Wersja 0.90
Ostatnia Aktualizacja 2016-11-25
Data Publikacji 2016-11-25
Ocena 4.77/5 Łącznie 43 Oceny
Deweloper http://gpxplus.net
Typ Płatności free
Strona Rozszerzenia https://gpx.plus/
Adres URL Strony Pomocy https://gpx.plus/help/notifier
Obsługiwane Języki 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
}