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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a random cat to the empty state of Gmail inbox"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Inbox Zero Cats for Gmail 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
    }
}