Simplify Gmail
Make Gmail simpler, more capable, and more respectful
什麼是Simplify Gmail?
Simplify Gmail是由https://simpl.fyi開發的Chrome擴展程式,該擴展的主要功能是“Make Gmail simpler, more capable, and more respectful”。
擴展截圖
下載Simplify Gmail擴展crx文件
下載Simplify Gmail擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Brought to you by the co-founder and design lead for Google Inbox, Simplify Gmail is a browser extension for desktop Gmail that boosts productivity, strengthens privacy, and reduces️ stress by: ✔️ BETTER DESIGN: Hundreds of improvements (small and large) to streamline, simplify, and enhance Gmail’s design and functionality. Hide the features you don’t use, customize the ones you do including setting the list and message width and fonts. ✔️ BUNDLES: Group conversations with the same label or category into a single row in your inbox for easier bulk reading and processing. ✔️ SAVED SEARCHES: Add commonly used searches or bookmark any message to your nav for easy access. Simplify includes 24 useful searches by default like Travel, Purchases, Archived, Attachments, Notes to self, PDFs, Photos, and more. ✔️ PAUSE INBOX: Pause new mail or hide the inbox entirely for deep focus. Optionally disable notifications when the inbox is paused or hidden. ✔️ BLOCK TRACKERS: Simplify blocks over 250 email spy trackers (more than any other tracker blocker extension). ✔️ KEYBOARD SHORTCUTS: Navigate faster with your arrow keys, Enter (to open, then to reply), and Escape (close a message, then to return to inbox). Use familiar shortcuts like Ctrl+A / ⌘A to select all or Ctrl+Z / ⌘Z to undo. Press "?" in Gmail to see all shortcuts. Also includes advanced shortcuts like [ I ] to reply to an intro and move the sender to BCC. ✔️ DARK MODE: Auto-switch with OS with options to invert all of Gmail’s UI and some or all messages. ✔️ GROUP BY DATE: Group messages list by date with bulk actions to one-click archive or delete. ✔️ INBOX ZERO BACKGROUND: Choose a different background to get when you reach inbox zero. ✔️ AUTO-CC/BCC: Set addresses to add to every new message and/or reply And much more... _________________________________________________________ PAID PLAN REQUIRED AFTER 1 MONTH TRIAL Comes with a free 1-month trial after which a paid plan is required. Learn more and sign up when you're ready at https://simpl.fyi/plans _________________________________________________________ IS IT SAFE? You should always be super careful what extensions or apps you use with your email. ✔️ Simplify always puts your security and privacy first. ✔️ The code for Simplify is entirely stored on your computer (no remote code) and is for the sole purpose of improving and enhancing Gmail's user interface and functionality. ✖️ Simplify does NOT request full access to your email (no API permissions required). ✖️ None of your data is collected, stored, or sent to Simplify. ✖️ Simplify has no tracking or analytics software. ✖️ Simplify will never have ads. Ever. _________________________________________________________ PRIVACY POLICY Simplify's products have no ads, no analytics, no trackers, no cookies, and do not send or receive personal information of any kind from your account or device. Your privacy and the security of your account and data is of the utmost importance to us. We aim to make software worth paying for and taking the strictest stance on privacy possible. Our full privacy policy is at https://simpl.fyi/privacy _________________________________________________________ HAVE FEEDBACK OR QUESTIONS? You can send feedback or report issues via https://simpl.fyi/support (I usually respond within one business day). Note that there are over 100,000 unique combinations of Gmail’s options, features, and user states. Add in other 3rd party add-ons, different languages, browsers, screen sizes, and more and it grows to over a billion. Simplify strives to support them all, along with the more popular 3rd party extensions and add-ons. I wrote more about the complexity of building on top of Gmail here: https://on.simpl.fyi/p/complexity-of-simplify
擴展基本資訊
名稱 | Simplify Gmail |
ID | pbmlfaiicoikhdbjagjbglnbfcbcojpj |
官方網址 | https://chromewebstore.google.com/detail/simplify-gmail/pbmlfaiicoikhdbjagjbglnbfcbcojpj |
簡介 | Make Gmail simpler, more capable, and more respectful |
檔案大小 | 9.6 MB |
安裝次數 | 40,810 |
目前版本 | 3.1.13 |
更新時間 | 2024-02-09 |
上架時間 | 2020-06-26 |
評分 | 4.50/5 共 599 次評分 |
開發者 | https://simpl.fyi |
電子郵箱 | [email protected] |
付費類型 | in_app |
擴展官網 | https://simpl.fyi |
說明頁面URL | https://simpl.fyi/support |
隱私政策頁面URL | https://simpl.fyi/privacy |
支援的語言 | id,de,en,fr,nl,no,tr,da,es,it,hu,pl,pt-BR,pt-PT,fi,cs,el,ru,uk,zh-CN,zh-TW,ja,ko |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Simplify Gmail", "version": "3.1.13", "description": "Make Gmail simpler, more capable, and more respectful", "homepage_url": "https:\/\/simpl.fyi", "default_locale": "en", "manifest_version": 3, "icons": { "48": "img\/app\/icon48.png", "128": "img\/app\/icon128.png", "512": "img\/app\/icon512.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "css": [ "css\/images.css", "css\/simplifyGmail.css" ], "js": [ "js\/simplifyGmail.js" ], "run_at": "document_start", "all_frames": false } ], "action": { "default_icon": { "48": "img\/app\/icon48.png", "128": "img\/app\/icon128.png" }, "default_title": "Simplify for Gmail", "default_popup": "prefs\/popup.html" }, "declarative_net_request": { "rule_resources": [ { "id": "simplifyTrackerList", "enabled": true, "path": "prefs\/trackers.json" } ] }, "background": { "service_worker": "js\/workers.js" }, "options_ui": { "page": "prefs\/options.html", "open_in_tab": true }, "web_accessible_resources": [ { "resources": [ "prefs\/*", "img\/**", "fonts\/*", "js\/authUser.js" ], "matches": [ "https:\/\/mail.google.com\/*" ] } ], "permissions": [ "storage", "declarativeNetRequestWithHostAccess" ], "optional_permissions": [ "contentSettings" ], "host_permissions": [ "https:\/\/mail.google.com\/*", "https:\/\/*.googleusercontent.com\/proxy\/*" ], "content_security_policy": { "extension_pages": "default-src 'self'; style-src 'self'; script-src 'self'; img-src 'self'" } } |