Blue Bell Gmail™ notification tool
Blue Bell Gmail™ notification tool allows users to view new emails easily.
Τι είναι το Blue Bell Gmail™ notification tool;
Το Blue Bell Gmail™ notification tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον iris009147, και η κύρια λειτουργία του είναι "Blue Bell Gmail™ notification tool allows users to view new emails easily.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Blue Bell Gmail™ notification tool
Λήψη αρχείων επέκτασης Blue Bell Gmail™ notification tool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Blue bell is an open-source project that notifies you about incoming email from all your Google Mail accounts. It also allows you to see new incoming emails as soon as they arrive.Even though it is not a full-featured Gmail client, it can help you complete a few routine tasks quickly. Features: ✅ You do not need to enter any credentials. ✅ Use of RSS technology minimizes bandwidth consumption. ✅The extension code is publicly accessible on GitHub. Blue Bell stores any information about me? 🔅 Nothing is stored on servers. 🔅 The only thing being locally stored for caching purposes , are your notifications for a faster loading time. 🔅 This extension does not track you or collect any information from you. 🔅 Your data is only transferred between your browser and the Google (Gmail) server. 🔅 No data is sent to third parties. Notes: 1.Multi-account simultaneous use is not supported at this time. Privacy 1.Gmail™ is a trademark of Google . Blue Bell has no relationship or partnership with Gmail. We use Gmail RSS APIs and show notifications. Source Code: Source code of the extension is available on Github: https://github.com/midhunz/blue-bell-notifier To report bugs and track them submit them: https://github.com/midhunz/blue-bell-notifier/issues?q=is%3Aopen+is%3Aissue
Βασικές Πληροφορίες Επέκτασης
Όνομα | Blue Bell Gmail™ notification tool |
ID | dokpofkkaggijbeeaeijobkhjfdijjec |
Επίσημο URL | https://chromewebstore.google.com/detail/blue-bell-gmail-notificat/dokpofkkaggijbeeaeijobkhjfdijjec |
Περιγραφή | Blue Bell Gmail™ notification tool allows users to view new emails easily. |
Μέγεθος Αρχείου | 1.18 MB |
Αριθμός Εγκαταστάσεων | 64 |
Τρέχουσα Έκδοση | 0.1.3 |
Τελευταία Ενημέρωση | 2022-08-05 |
Ημερομηνία Δημοσίευσης | 2021-12-27 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | iris009147 |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://midhunz.github.io/gmail-notifier |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/midhunz/gmail-notifier/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "version": "0.1.3", "short_name": "Blue Bell: Gmail\u2122 notification tool", "name": "Blue Bell Gmail\u2122 notification tool", "description": "Blue Bell Gmail\u2122 notification tool allows users to view new emails easily.", "browser_action": { "default_title": "Blue Bell", "default_popup": "popup.html" }, "background": { "scripts": [ ".\/js\/jquery-3.6.0.min.js", "background.bundle.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "contentScript.bundle.js" ] } ], "icons": { "16": "img\/notification-bell-16.png", "48": "img\/notification-bell-64.png", "128": "img\/notification-bell-128.png" }, "permissions": [ "storage" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |