GPXPlus Notifier
Get notifications from GPXPlus when you're offline.
O que é GPXPlus Notifier?
GPXPlus Notifier é uma extensão do Chrome desenvolvida por http://gpxplus.net, e sua principal característica é "Get notifications from GPXPlus when you're offline.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão GPXPlus Notifier
Baixe arquivos de extensão GPXPlus Notifier no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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!
Informações Básicas da Extensão
Nome | |
ID | bikgbcleglmoiiadddnnmmcekkfkhkdo |
URL Oficial | https://chrome.google.com/webstore/detail/gpxplus-notifier/bikgbcleglmoiiadddnnmmcekkfkhkdo |
Descrição | Get notifications from GPXPlus when you're offline. |
Tamanho do Arquivo | 43.37 KB |
Contagem de Instalações | 1,000 |
Versão Atual | 0.90 |
Última Atualização | 2016-11-25 |
Data de Publicação | 2016-11-25 |
Classificação | 4.77/5 Total de 43 Avaliações |
Desenvolvedor | http://gpxplus.net |
Tipo de Pagamento | free |
Site da Extensão | https://gpx.plus/ |
URL da Página de Ajuda | https://gpx.plus/help/notifier |
Idiomas Suportados | 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 } |