WhatsApp Notification Changer
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Τι είναι το WhatsApp Notification Changer;
Το WhatsApp Notification Changer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rafael.galani, και η κύρια λειτουργία του είναι "A simple extension that allows the user to change the notification sound of web.whatsapp.com.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης WhatsApp Notification Changer
Λήψη αρχείων επέκτασης WhatsApp Notification Changer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
A simple extension that allows the user to change the notification sound of web.whatsapp.com.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | jnlilnljmhioncbmofmdlphmagmegkde |
Επίσημο URL | https://chrome.google.com/webstore/detail/whatsapp-notification-cha/jnlilnljmhioncbmofmdlphmagmegkde |
Περιγραφή | A simple extension that allows the user to change the notification sound of web.whatsapp.com. |
Μέγεθος Αρχείου | 83.43 KB |
Αριθμός Εγκαταστάσεων | 460 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2020-07-30 |
Ημερομηνία Δημοσίευσης | 2020-07-30 |
Αξιολόγηση | 4.00/5 Συνολικά 6 Αξιολογήσεις |
Προγραμματιστής | rafael.galani |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "WhatsApp Notification Changer", "version": "1.0", "description": "A simple extension that allows the user to change the notification sound of web.whatsapp.com.", "permissions": [ "unlimitedStorage", "declarativeContent", "storage", "webRequest", "webRequestBlocking", "*:\/\/web.whatsapp.com\/*" ], "background": { "scripts": [ "background.js" ] }, "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" } }, "content_scripts": [ { "js": [ "content-script.js" ], "matches": [ "*:\/\/web.whatsapp.com\/*" ] } ], "web_accessible_resources": [ "modifier.js" ], "icons": { "16": "images\/icon_16.png", "32": "images\/icon_32.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "manifest_version": 2 } |