Inbox Zero Cats for Gmail

Adds a random cat to the empty state of Gmail inbox

¿Qué es Inbox Zero Cats for Gmail?

Inbox Zero Cats for Gmail es una extensión de Chrome desarrollada por Elad Mizrahi, y su función principal es "Adds a random cat to the empty state of Gmail inbox".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Inbox Zero Cats for Gmail

Descarga archivos de extensión Inbox Zero Cats 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

                        Are you a cat lover who's looking to personalize your inbox zero experience? Look no further than Inbox Zero Cats! 

This unique extension adds a fun touch to your Gmail empty state by rewarding you with a random image of a cat every time you archive all your emails. It's compatible with all inbox types and themes, allowing you to customize it to your liking. You even have the option to add or replace images and titles for a more personalized touch!

Give Inbox Zero Cats a try today and discover how much more enjoyable and entertaining inbox zero can be!                    

Información Básica de la Extensión

Nombre Inbox Zero Cats for Gmail Inbox Zero Cats for Gmail
ID kmigepmnbndfglbihecpfkickaibhpln
URL Oficial https://chromewebstore.google.com/detail/inbox-zero-cats-for-gmail/kmigepmnbndfglbihecpfkickaibhpln
Descripción Adds a random cat to the empty state of Gmail inbox
Tamaño del Archivo 295 KB
Cantidad de Instalaciones 46
Versión Actual 1.0.1
Última Actualización 2023-12-04
Fecha de Publicación 2022-11-29
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador Elad Mizrahi
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://elad.mizrahi.cc
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Inbox Zero Cats for Gmail",
    "version": "1.0.1",
    "description": "Adds a random cat to the empty state of Gmail inbox",
    "icons": {
        "16": "images\/icon_16.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png",
        "256": "images\/icon_256.png",
        "512": "images\/icon_512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "index.js"
            ],
            "css": [
                "styles.css"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "action": {
        "default_icon": {
            "16": "images\/icon_16.png",
            "48": "images\/icon_48.png",
            "128": "images\/icon_128.png"
        },
        "default_title": "Inbox Zero Cats for Gmail",
        "default_popup": "popup\/index.html",
        "browser_style": false
    },
    "options_ui": {
        "page": "options\/index.html",
        "open_in_tab": true
    }
}