Gmail Unsubscribe
A chrome extension to unsubscribe emails in gmail
什么是Gmail Unsubscribe?
Gmail Unsubscribe是由gordalina开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to unsubscribe emails in gmail”。
扩展截图
下载Gmail Unsubscribe扩展crx文件
下载Gmail Unsubscribe扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Looking for a more efficient way to unsubscribe to emails?
With this extension you can stop them with a single keyboard shortcut!
Press Command+U (macOS) or Alt+U (Windows/Linux) when viewing the email. That's it!
You can switch the shortcut by visiting chrome://extensions/shortcuts
It works on your computer as a chrome extension and no data is sent to any server outside of your computer. It's 100% private. 扩展基本信息
| 名称 | |
| ID | gkakfbcilfllnomafmgaekkhcmogalah |
| 官方URL | https://chromewebstore.google.com/detail/gmail-unsubscribe/gkakfbcilfllnomafmgaekkhcmogalah |
| 简介 | A chrome extension to unsubscribe emails in gmail |
| 文件大小 | 17.2 KB |
| 安装次数 | 1,549 |
| 当前版本 | 0.1.1 |
| 更新时间 | 2024-01-04 |
| 上架时间 | 2021-11-09 |
| 评分 | 3.67/5 共6次评分 |
| 开发者 | gordalina |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/gordalina/gmail-unsubscribe |
| 帮助页面URL | https://github.com/gordalina/gmail-unsubscribe/issues |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "A chrome extension to unsubscribe emails in gmail",
"version": "0.1.1",
"manifest_version": 3,
"name": "Gmail Unsubscribe",
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"background": {
"service_worker": "service_worker.bundle.js"
},
"commands": {
"unsubscribe": {
"description": "Unsubscribe from mailing list",
"suggested_key": {
"default": "Alt+U",
"mac": "Command+U"
}
}
},
"content_scripts": [
{
"matches": [
"https:\/\/mail.google.com\/*"
],
"js": [
"content_script.bundle.js"
]
}
]
} | |