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”。
扩展截图
下载Inbox Zero Cats for Gmail扩展crx文件
下载Inbox Zero Cats for Gmail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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 |
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 } } |