Notify My Android
Sends a link to the currently visited page as a push notification to your Android device.
What is Notify My Android?
Notify My Android is a Chrome extension developed by https://notifymyandroid.com, and its main feature is "Sends a link to the currently visited page as a push notification to your Android device.".
Extension Screenshots
Download Notify My Android Extension CRX File
Download Notify My Android extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Notify My Android |
ID | mmgnghlgdajmnflfaebklmmlkkeehbbb |
Official URL | https://chromewebstore.google.com/detail/notify-my-android/mmgnghlgdajmnflfaebklmmlkkeehbbb |
Description | Sends a link to the currently visited page as a push notification to your Android device. |
File Size | 87.68 KB |
Installation Count | 308 |
Current Version | 0.3 |
Last Updated | 2012-09-16 |
Publish Date | 2012-09-15 |
Rating | 3.60/5 Total 5 Ratings |
Developer | https://notifymyandroid.com |
Payment Type | free |
Supported Languages | 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:\/\/*\/" ] } |