Inbox Reborn theme for Gmail™
Adds features like reminders, email bundling and Inbox's minimalistic style to Gmail™
Τι είναι το Inbox Reborn theme for Gmail™;
Το Inbox Reborn theme for Gmail™ είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον blackmirrorstudiollc, και η κύρια λειτουργία του είναι "Adds features like reminders, email bundling and Inbox's minimalistic style to Gmail™".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Inbox Reborn theme for Gmail™
Λήψη αρχείων επέκτασης Inbox Reborn theme for Gmail™ σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
ABOUT _________________________________________________________ Inbox Reborn theme for Gmail™ is an extension created by multiple developers all over the world wanting to bring back the look and feel of Google Inbox. This extension was created to keep those amazing features alive through simplistic code to beatify Gmail™. PRIVACY POLICY _________________________________________________________ Inbox Reborn theme for Gmail™ has no ads, no analytics, no trackers, no cookies, and does not send or receive personal information from this extension. All our code is open source which can be viewed on our GitHub (https://github.com/team-inbox/inbox-reborn) HAVE FEEDBACK OR QUESTIONS? _________________________________________________________ If you have any issues with this extension or see bugs or features you would like us to add please post on our GitHub page (https://github.com/team-inbox/inbox-reborn/issues)
Βασικές Πληροφορίες Επέκτασης
Όνομα | Inbox Reborn theme for Gmail™ |
ID | bkphmihkdbdgedlaflnkhnmnmibffomf |
Επίσημο URL | https://chromewebstore.google.com/detail/inbox-reborn-theme-for-gm/bkphmihkdbdgedlaflnkhnmnmibffomf |
Περιγραφή | Adds features like reminders, email bundling and Inbox's minimalistic style to Gmail™ |
Μέγεθος Αρχείου | 1.14 MB |
Αριθμός Εγκαταστάσεων | 639 |
Τρέχουσα Έκδοση | 0.5.9.30 |
Τελευταία Ενημέρωση | 2024-02-16 |
Ημερομηνία Δημοσίευσης | 2021-04-24 |
Αξιολόγηση | 4.94/5 Συνολικά 16 Αξιολογήσεις |
Προγραμματιστής | blackmirrorstudiollc |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://teaminbox.dev/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/team-inbox/inbox-reborn/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Inbox Reborn theme for Gmail\u2122", "version": "0.5.9.30", "manifest_version": 2, "description": "Adds features like reminders, email bundling and Inbox's minimalistic style to Gmail\u2122", "homepage_url": "https:\/\/github.com\/team-inbox\/inbox-reborn", "browser_specific_settings": { "gecko": { "id": "[email protected]" } }, "browser_action": { "default_popup": "src\/options\/options.html" }, "options_ui": { "page": "src\/options\/options.html", "open_in_tab": false }, "background": { "scripts": [ "src\/background.js" ], "persistent": false }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "src\/style.css" ], "js": [ "src\/script.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "images\/*" ] } |