Gmail++
Improves the user experience of Gmail
Gmail++とは何ですか?
Gmail++はMichael Pfaffによって開発されたChromeの拡張機能で、その主な機能は「Improves the user experience of Gmail」です。
拡張機能のスクリーンショット
Gmail++拡張機能のCRXファイルをダウンロード
Gmail++拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Improves the user experience of Gmail. Features: - Modifies the refresh button (the one above the threads list, not beside the address bar) to also check external POP3 accounts. - Checks external POP3 accounts on page load. - Checks external POP3 accounts at a configurable interval.
拡張機能の基本情報
名前 | Gmail++ |
ID | jcbfnofllipbepnolhgcdloichjbcena |
公式URL | https://chromewebstore.google.com/detail/gmail++/jcbfnofllipbepnolhgcdloichjbcena |
説明 | Improves the user experience of Gmail |
ファイルサイズ | 9.16 KB |
インストール数 | 182 |
現在のバージョン | 1.1.0 |
最終更新日 | 2022-10-12 |
公開日 | 2022-10-09 |
開発者 | Michael Pfaff |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Gmail++", "version": "1.1.0", "description": "Improves the user experience of Gmail", "icons": { "48": "icons\/icon-48.png", "64": "icons\/icon-64.png" }, "permissions": [ "storage" ], "host_permissions": [ "*:\/\/mail.google.com\/" ], "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "lib.js", "main.js" ], "run_at": "document_end" } ], "options_ui": { "page": "options.html", "browser_style": true }, "browser_specific_settings": { "gecko": { "id": "[email protected]" } } } |