GPXPlus Notifier
Get notifications from GPXPlus when you're offline.
¿Qué es GPXPlus Notifier?
GPXPlus Notifier es una extensión de Chrome desarrollada por http://gpxplus.net, y su función principal es "Get notifications from GPXPlus when you're offline.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión GPXPlus Notifier
Descarga archivos de extensión GPXPlus Notifier en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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!
Información Básica de la Extensión
Nombre | |
ID | bikgbcleglmoiiadddnnmmcekkfkhkdo |
URL Oficial | https://chrome.google.com/webstore/detail/gpxplus-notifier/bikgbcleglmoiiadddnnmmcekkfkhkdo |
Descripción | Get notifications from GPXPlus when you're offline. |
Tamaño del Archivo | 43.37 KB |
Cantidad de Instalaciones | 1,000 |
Versión Actual | 0.90 |
Última Actualización | 2016-11-25 |
Fecha de Publicación | 2016-11-25 |
Calificación | 4.77/5 Total de 43 Calificaciones |
Desarrollador | http://gpxplus.net |
Tipo de Pago | free |
Sitio Web de la Extensión | https://gpx.plus/ |
URL de la Página de Ayuda | https://gpx.plus/help/notifier |
Idiomas Soportados | 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 } |