Message Counter for Gmail™
Shows the mail count of the conversation next to the scrollbar in Gmail™.
Message Counter for Gmail™とは何ですか?
Message Counter for Gmail™はJacob "kurtextrem" Großによって開発されたChromeの拡張機能で、その主な機能は「Shows the mail count of the conversation next to the scrollbar in Gmail™.」です。
拡張機能のスクリーンショット
Message Counter for Gmail™拡張機能のCRXファイルをダウンロード
Message Counter for Gmail™拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Adds the amount of mails of the currently viewed conversation next to the scrollbar in Gmail.
This extension is open-source: https://github.com/kurtextrem/Gmail-Mail-Counter
Icon by Abhishek Pipalva. 拡張機能の基本情報
| 名前 | |
| ID | cmdjfmokkblaapkclnhnefeokpkmkkkl |
| 公式URL | https://chromewebstore.google.com/detail/message-counter-for-gmail/cmdjfmokkblaapkclnhnefeokpkmkkkl |
| 説明 | Shows the mail count of the conversation next to the scrollbar in Gmail™. |
| ファイルサイズ | 7.09 KB |
| インストール数 | 201 |
| 現在のバージョン | 1.3.4 |
| 最終更新日 | 2023-12-03 |
| 公開日 | 2018-05-17 |
| 開発者 | Jacob "kurtextrem" Groß |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/kurtextrem/Gmail-Mail-Counter |
| ヘルプページのURL | https://github.com/kurtextrem/Gmail-Mail-Counter/issues |
| プライバシーポリシーページのURL | https://www.kurtextrem.de/chrome/PRIVACY.html |
| 対応言語 | de,en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_extName__",
"version": "1.3.4",
"manifest_version": 3,
"description": "__MSG_extDesc__",
"default_locale": "en",
"icons": {
"128": "img\/icon-128.png",
"16": "img\/icon-128.png",
"48": "img\/icon-128.png"
},
"author": "Jacob \u201ekurtextrem\" Gro\u00df",
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"contentscript.js"
],
"css": [
"content.css"
],
"run_at": "document_idle",
"all_frames": false
}
],
"minimum_chrome_version": "88",
"host_permissions": [
"*:\/\/mail.google.com\/*"
]
} | |