Inbox Zero Cats for Gmail

Adds a random cat to the empty state of Gmail inbox

Inbox Zero Cats for Gmail là gì?

Inbox Zero Cats for Gmail là một tiện ích mở rộng Chrome được phát triển bởi Elad Mizrahi, và tính năng chính của nó là "Adds a random cat to the empty state of Gmail inbox".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Inbox Zero Cats for Gmail

Tải xuống các tệp mở rộng Inbox Zero Cats for Gmail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Inbox Zero Cats for Gmail Inbox Zero Cats for Gmail
ID kmigepmnbndfglbihecpfkickaibhpln
URL Chính Thức https://chromewebstore.google.com/detail/inbox-zero-cats-for-gmail/kmigepmnbndfglbihecpfkickaibhpln
Mô tả Adds a random cat to the empty state of Gmail inbox
Kích Thước Tệp 295 KB
Số Lần Cài Đặt 46
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2023-12-04
Ngày Phát Hành 2022-11-29
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Elad Mizrahi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://elad.mizrahi.cc
Ngôn Ngữ Được Hỗ Trợ 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
    }
}