Notify My Android
Sends a link to the currently visited page as a push notification to your Android device.
Что такое Notify My Android?
Notify My Android - это расширение Chrome, разработанное https://notifymyandroid.com, и его основная функция - "Sends a link to the currently visited page as a push notification to your Android device.".
Снимки экрана расширения
Скачать файл CRX расширения Notify My Android
Скачайте файлы расширений Notify My Android в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
NMA is a platform that allows you to delivery push notifications from virtually any application to your Android device. This is a Chrome Extension that allows you to quickly send push notifications to your phone with the URL or a quick text that you just copied and want to have it on your phone.
Основная информация о расширении
Название | Notify My Android |
ID | mmgnghlgdajmnflfaebklmmlkkeehbbb |
Официальный URL | https://chromewebstore.google.com/detail/notify-my-android/mmgnghlgdajmnflfaebklmmlkkeehbbb |
Описание | Sends a link to the currently visited page as a push notification to your Android device. |
Размер файла | 87.68 KB |
Количество установок | 308 |
Текущая Версия | 0.3 |
Последнее Обновление | 2012-09-16 |
Дата публикации | 2012-09-15 |
Рейтинг | 3.60/5 Всего 5 оценок |
Разработчик | https://notifymyandroid.com |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "Notify My Android", "version": "0.3", "manifest_version": 2, "description": "Sends a link to the currently visited page as a push notification to your Android device.", "icons": { "128": "assets\/icon128.png", "96": "assets\/icon96.png" }, "content_scripts": [ { "js": [ "js\/getSelection.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "browser_action": { "default_icon": "assets\/icon19.png", "default_title": "NotifyMyAndroid", "default_popup": "html\/popup.html" }, "options_page": "fancy-settings\/index.html", "background": { "scripts": [ "fancy-settings\/lib\/store.js", "js\/background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/", "https:\/\/*\/" ] } |