GPXPlus Notifier

Get notifications from GPXPlus when you're offline.

Was ist GPXPlus Notifier?

GPXPlus Notifier ist eine Chrome-Erweiterung, die von http://gpxplus.net entwickelt wurde, und ihr Hauptmerkmal ist "Get notifications from GPXPlus when you're offline.".

Erweiterungsscreenshots

screenshot
screenshot

GPXPlus Notifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie GPXPlus Notifier-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name GPXPlus Notifier GPXPlus Notifier
ID bikgbcleglmoiiadddnnmmcekkfkhkdo
Offizielle URL https://chrome.google.com/webstore/detail/gpxplus-notifier/bikgbcleglmoiiadddnnmmcekkfkhkdo
Beschreibung Get notifications from GPXPlus when you're offline.
Dateigröße 43.37 KB
Installationsanzahl 1,000
Aktuelle Version 0.90
Letztes Update 2016-11-25
Veröffentlichungsdatum 2016-11-25
Bewertung 4.77/5 Insgesamt 43 Bewertungen
Entwickler http://gpxplus.net
Zahlungsart free
Erweiterungswebsite https://gpx.plus/
Hilfeseite URL https://gpx.plus/help/notifier
Unterstützte Sprachen 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
}