Gmail Button
A simple toolbar icon to open Gmail
什么是Gmail Button?
Gmail Button是由Valtteri Laitinen开发的Chrome扩展程序,该扩展的主要功能是“A simple toolbar icon to open Gmail”。
扩展截图
下载Gmail Button扩展crx文件
下载Gmail Button扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
(This extension is not affiliated with Google. “Gmail” is a trademark of Google LLC.) 扩展基本信息
| 名称 | |
| ID | afdienfgfeojjnmobgakodmkiebhfcap |
| 官方URL | https://chromewebstore.google.com/detail/gmail-button/afdienfgfeojjnmobgakodmkiebhfcap |
| 简介 | A simple toolbar icon to open Gmail |
| 文件大小 | 5.44 KB |
| 安装次数 | 5,228 |
| 当前版本 | 3.0.0 |
| 更新时间 | 2023-07-19 |
| 上架时间 | 2019-10-13 |
| 评分 | 3.80/5 共5次评分 |
| 开发者 | Valtteri Laitinen |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/valtlai/gmail-button |
| 帮助页面URL | https://github.com/valtlai/gmail-button/discussions/categories/q-a |
| 隐私政策页面URL | https://github.com/valtlai/gmail-button/blob/main/PRIVACY.md |
| 支持的语言 | en,fi |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"minimum_chrome_version": "100",
"name": "__MSG_name__",
"version": "3.0.0",
"description": "__MSG_desc__",
"default_locale": "en",
"icons": {
"128": "icon.png"
},
"permissions": [
"contextMenus",
"storage"
],
"optional_permissions": [
"tabs"
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": "icon.png",
"default_title": "__MSG_open__"
}
} | |