Inbox Zero Cats for Gmail

Adds a random cat to the empty state of Gmail inbox

Inbox Zero Cats for Gmail क्या है?

Inbox Zero Cats for Gmail Elad Mizrahi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a random cat to the empty state of Gmail inbox"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Inbox Zero Cats for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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!                    

एक्सटेंशन की मूल जानकारी

नाम Inbox Zero Cats for Gmail Inbox Zero Cats for Gmail
ID kmigepmnbndfglbihecpfkickaibhpln
आधिकारिक URL https://chromewebstore.google.com/detail/inbox-zero-cats-for-gmail/kmigepmnbndfglbihecpfkickaibhpln
विवरण Adds a random cat to the empty state of Gmail inbox
फ़ाइल का आकार 295 KB
स्थापना संख्या 46
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2023-12-04
प्रकाशन तिथि 2022-11-29
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर Elad Mizrahi
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://elad.mizrahi.cc
समर्थित भाषाएँ 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
    }
}