NotifyMe
This extension forwards your Android device notifications to your computer.
Τι είναι το NotifyMe;
Το NotifyMe είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jb.lernout, και η κύρια λειτουργία του είναι "This extension forwards your Android device notifications to your computer.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης NotifyMe
Λήψη αρχείων επέκτασης NotifyMe σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Receive your Android notifications on your computer. This extension allows you to receive your Android notifications on your computer. You don't need to check your phone/tablet anymore, your notifications are directly displayed on your computer screen. To use the application : - Install this extension on your computer - Install the Android application : https://play.google.com/store/apps/details?id=com.nodria.NotifyMe - From the application, scan the QR code displayed by the extension in Chrome. When scanning the QR code, the application retrieves an encryption key linked to your web browser. The application uses this key to encrypt the notifications before forwarding them to your web browser, the only one able to decrypt them. Your notifications are secure. Features : - Forward Android notifications on your computer - Clear notification from your computer - Filter notifications - Maintain an history of the notifications Please contact us if you encounter any problem : [email protected]
Βασικές Πληροφορίες Επέκτασης
Όνομα | NotifyMe |
ID | egefjklemaakhkbgmjdijcpkhfiigbed |
Επίσημο URL | https://chromewebstore.google.com/detail/notifyme/egefjklemaakhkbgmjdijcpkhfiigbed |
Περιγραφή | This extension forwards your Android device notifications to your computer. |
Μέγεθος Αρχείου | 544 KB |
Αριθμός Εγκαταστάσεων | 273 |
Τρέχουσα Έκδοση | 1.1.9 |
Τελευταία Ενημέρωση | 2014-08-23 |
Ημερομηνία Δημοσίευσης | 2014-08-23 |
Αξιολόγηση | 3.00/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | jb.lernout |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "NotifyMe", "description": "This extension forwards your Android device notifications to your computer.", "version": "1.1.9", "author": "Nodria", "content_security_policy": "script-src 'self' https:\/\/*.nodria.com https:\/\/*.ggpht.com https:\/\/*.gstatic.com https:\/\/*.google.com https:\/\/*.googleusercontent.com https:\/\/*.googleapis.com; object-src 'self'", "background": { "persistent": true, "page": "background.html" }, "browser_action": { "default_icon": "icon_16.png", "default_popup": "popup.html" }, "icons": { "16": "icon_16.png", "48": "icon_48.png", "72": "icon_72.png", "96": "icon_96.png", "128": "icon_128.png", "512": "icon.png" }, "permissions": [ "https:\/\/*.nodria.com\/", "https:\/\/*.ggpht.com\/", "https:\/\/*.google.com\/", "https:\/\/*.googleusercontent.com\/", "https:\/\/*.gstatic.com\/", "https:\/\/*.googleapis.com\/", "background", "notifications", "storage", "unlimitedStorage", "clipboardRead", "clipboardWrite" ], "web_accessible_resources": [ "icon_16.png", "icon_48.png", "icon_72.png", "icon_96.png", "icon_128.png" ] } |