Gmail Labels as Tabs
Organize your Gmail mailbox labels as tabs.
Τι είναι το Gmail Labels as Tabs;
Το Gmail Labels as Tabs είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Puru Tuladhar, και η κύρια λειτουργία του είναι "Organize your Gmail mailbox labels as tabs.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gmail Labels as Tabs
Λήψη αρχείων επέκτασης Gmail Labels as Tabs σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
"Gmail Labels as Tabs" is an open-source email productivity extension for Google Chrome that customizes your Gmail interface by adding Gmail labels as tabs. ★ Organize your labels as Gmail tabs ★ Drag and drop to re-arrange tabs ★ Shows unread messages badge ★ Supports dark mode theme ★ Synchronizes extension settings with your Gmail account ★ 100% open-source and ads-free - we don’t mine your data, we don’t sell your data 👨💻 Github ▶ https://github.com/tuladhar/gmail-labels-as-tabs ❤️ Support my work ▶ https://tuladhar.github.io/gmail-labels-as-tabs/DONATION
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gmail Labels as Tabs |
ID | fadllmncpdhaindodhlgbheephdkopih |
Επίσημο URL | https://chromewebstore.google.com/detail/gmail-labels-as-tabs/fadllmncpdhaindodhlgbheephdkopih |
Περιγραφή | Organize your Gmail mailbox labels as tabs. |
Μέγεθος Αρχείου | 135 KB |
Αριθμός Εγκαταστάσεων | 215 |
Τρέχουσα Έκδοση | 2.2.4 |
Τελευταία Ενημέρωση | 2020-08-25 |
Ημερομηνία Δημοσίευσης | 2020-07-23 |
Αξιολόγηση | 3.75/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | Puru Tuladhar |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://tuladhar.github.io/gmail-labels-as-tabs |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/tuladhar/gmail-labels-as-tabs |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Gmail Labels as Tabs", "version": "2.2.4", "description": "Organize your Gmail mailbox labels as tabs.", "manifest_version": 2, "permissions": [ "declarativeContent", "storage", "identity" ], "page_action": { "default_popup": "popup.html", "default_icon": { "16": "images\/icons\/16.png", "32": "images\/icons\/32.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" } }, "icons": { "16": "images\/icons\/16.png", "32": "images\/icons\/32.png", "48": "images\/icons\/48.png", "128": "images\/icons\/128.png" }, "oauth2": { "client_id": "182667075532-ksut7cmajcg9qgvic145f469je6ldn11.apps.googleusercontent.com", "scopes": [ "https:\/\/www.googleapis.com\/auth\/gmail.labels" ] }, "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "js\/ui.js" ], "css": [ "css\/ui.css" ], "run_at": "document_end" } ], "content_security_policy": "script-src 'self' https:\/\/apis.google.com\/; object-src 'self'", "web_accessible_resources": [ "font\/*.woff2" ] } |