Auto Expander for Gmail™
Automatically expands too long mails in Gmail™.
Auto Expander for Gmail™とは何ですか?
Auto Expander for Gmail™はJacob "kurtextrem" Großによって開発されたChromeの拡張機能で、その主な機能は「Automatically expands too long mails in Gmail™.」です。
拡張機能のスクリーンショット
Auto Expander for Gmail™拡張機能のCRXファイルをダウンロード
Auto Expander for Gmail™拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Do you often receive too long mails and you're tired of scrolling to the bottom to open the full mail?
"[Message clipped] View entire message" is your foe?
Look no further! This extension automatically expands the mails in Gmail™ for you (also works in the new re-designed Gmail!).
Update: v1.5.0.3 - fixed various issues (not expanding properly etc)
Permissions:
Rights to read from Gmail in order to expand the mail. No data collected.
Code is open source: https://github.com/kurtextrem/Gmail-Auto-Expander
Icon by Boyan Kostov. 拡張機能の基本情報
| 名前 | |
| ID | ilkidmijegomodfeplfdekbfglhaahba |
| 公式URL | https://chromewebstore.google.com/detail/auto-expander-for-gmail/ilkidmijegomodfeplfdekbfglhaahba |
| 説明 | Automatically expands too long mails in Gmail™. |
| ファイルサイズ | 10.39 KB |
| インストール数 | 523 |
| 現在のバージョン | 1.5.0.5 |
| 最終更新日 | 2023-12-03 |
| 公開日 | 2019-05-25 |
| 評価 | 2.67/5 合計 9 レビュー |
| 開発者 | Jacob "kurtextrem" Groß |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/kurtextrem/Gmail-Auto-Expander |
| ヘルプページのURL | https://github.com/kurtextrem/Gmail-Auto-Expander/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.5.0.5",
"manifest_version": 3,
"description": "__MSG_extDesc__",
"default_locale": "en",
"icons": {
"128": "icon-128.png",
"16": "icon-128.png",
"48": "icon-128.png"
},
"author": "Jacob \u201ekurtextrem\" Gro\u00df",
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"contentscript.js"
],
"run_at": "document_idle",
"all_frames": false
}
],
"minimum_chrome_version": "88",
"host_permissions": [
"*:\/\/mail.google.com\/*"
]
} | |