inboxy: Inbox Bundles for Gmail
Adds Google Inbox bundles to Gmail
¿Qué es inboxy: Inbox Bundles for Gmail?
inboxy: Inbox Bundles for Gmail es una extensión de Chrome desarrollada por https://inboxymail.com, y su función principal es "Adds Google Inbox bundles to Gmail".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión inboxy: Inbox Bundles for Gmail
Descarga archivos de extensión inboxy: Inbox Bundles for Gmail en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
inboxy makes it easier to manage your inbox, by bringing Google Inbox bundles to Gmail. inboxy bundles together emails that share the same labels. To get started with bundling, simply create filters to apply labels to incoming emails. HIGHLIGHTS - Messages with the same label are bundled together in your inbox - Archive all bundled messages on the current page quickly - Use email filters to bundle messages automatically - Star a message to pin it outside of its bundle - Intuitive date headings - Supports light and dark themes PRIVACY & SECURITY inboxy is a lightweight visual layer over Gmail, and it uses Javascript and CSS to draw bundles. With the default settings, inboxy does not handle any personal/sensitive data. In addition, inboxy is open-source, and all code is available on Github. However, if you choose to customize your extension settings, inboxy uses the Chrome Storage Sync API to sync settings to browsers that you're logged into. For further details, see the privacy policy at https://www.inboxymail.com#privacy-policy. HAVE FEEDBACK? Post issues to the Github repo at https://github.com/teresa-ou/inboxy/issues. Visit https://www.inboxymail.com for more info.
Información Básica de la Extensión
Nombre | inboxy: Inbox Bundles for Gmail |
ID | clahkkinbdcdnogkkgmacmiknnamahha |
URL Oficial | https://chromewebstore.google.com/detail/inboxy-inbox-bundles-for/clahkkinbdcdnogkkgmacmiknnamahha |
Descripción | Adds Google Inbox bundles to Gmail |
Tamaño del Archivo | 221 KB |
Cantidad de Instalaciones | 2,172 |
Versión Actual | 1.6.5 |
Última Actualización | 2023-02-28 |
Fecha de Publicación | 2020-06-28 |
Calificación | 4.74/5 Total de 38 Calificaciones |
Desarrollador | https://inboxymail.com |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://www.inboxymail.com |
URL de la Página de Ayuda | https://github.com/teresa-ou/inboxy/issues |
URL de la Página de Política de Privacidad | https://www.inboxymail.com/privacy-policy.html |
Idiomas Soportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "inboxy: Inbox Bundles for Gmail", "version": "1.6.5", "description": "Adds Google Inbox bundles to Gmail", "homepage_url": "https:\/\/www.inboxymail.com", "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/mail\/*" ], "js": [ "content.js" ], "css": [ "style.css" ], "run_at": "document_start", "all_frames": false } ], "options_ui": { "page": "options\/options.html", "browser_style": false, "open_in_tab": true }, "permissions": [ "storage", "declarativeContent" ], "action": { "default_icon": { "16": "icons\/inboxy.png", "24": "icons\/[email protected]", "32": "icons\/[email protected]" }, "default_popup": "popup\/popup.html", "show_matches": [ "*:\/\/mail.google.com\/mail\/*" ] }, "icons": { "16": "icons\/inboxy.png", "32": "icons\/[email protected]", "48": "icons\/[email protected]", "128": "icons\/[email protected]" }, "web_accessible_resources": [ { "resources": [ "assets\/*.svg" ], "matches": [ "https:\/\/mail.google.com\/*" ] } ], "manifest_version": 3 } |