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 |
| Eメール | [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"
]
}
]
} | |