GPXPlus Notifier
Get notifications from GPXPlus when you're offline.
Что такое GPXPlus Notifier?
GPXPlus Notifier - это расширение Chrome, разработанное http://gpxplus.net, и его основная функция - "Get notifications from GPXPlus when you're offline.".
Снимки экрана расширения
Скачать файл CRX расширения GPXPlus Notifier
Скачайте файлы расширений GPXPlus Notifier в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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!
Основная информация о расширении
Название | |
ID | bikgbcleglmoiiadddnnmmcekkfkhkdo |
Официальный URL | https://chrome.google.com/webstore/detail/gpxplus-notifier/bikgbcleglmoiiadddnnmmcekkfkhkdo |
Описание | Get notifications from GPXPlus when you're offline. |
Размер файла | 43.37 KB |
Количество установок | 1,000 |
Текущая Версия | 0.90 |
Последнее Обновление | 2016-11-25 |
Дата публикации | 2016-11-25 |
Рейтинг | 4.77/5 Всего 43 оценок |
Разработчик | http://gpxplus.net |
Тип оплаты | free |
Официальный сайт расширения | https://gpx.plus/ |
URL страницы помощи | https://gpx.plus/help/notifier |
Поддерживаемые языки | 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 } |