Trimless for Google Mail™
Automatically shows trimmed content in Google Mail™.
Trimless for Google Mail™とは何ですか?
Trimless for Google Mail™はAlec Mevによって開発されたChromeの拡張機能で、その主な機能は「Automatically shows trimmed content in Google Mail™.」です。
拡張機能のスクリーンショット
Trimless for Google Mail™拡張機能のCRXファイルをダウンロード
Trimless for Google Mail™拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Expands trimmed parts, removes "Show trimmed content" buttons, sets trimmed text's color to light gray and indents it to the right. Restores clipped messages as well. You can switch it on and off by simply clicking the scissors icon in the address bar. The color and the size of indentation are fully customizable. Tinker with the source code on GitHub: http://bit.ly/YDmt1z Buy me some ice cream via PayPal: http://bit.ly/15maUAa
拡張機能の基本情報
名前 | Trimless for Google Mail™ |
ID | niepjjjfafhadmfdminbckmciijcaagc |
公式URL | https://chromewebstore.google.com/detail/trimless-for-google-mail/niepjjjfafhadmfdminbckmciijcaagc |
説明 | Automatically shows trimmed content in Google Mail™. |
ファイルサイズ | 88.72 KB |
インストール数 | 30,000 |
現在のバージョン | 1.11.1 |
最終更新日 | 2019-05-29 |
公開日 | 2019-05-29 |
評価 | 3.99/5 合計 93 レビュー |
開発者 | Alec Mev |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/jeremejevs/trimless-gmail |
ヘルプページのURL | https://github.com/jeremejevs/trimless-gmail/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Trimless for Google Mail\u2122", "version": "1.11.1", "description": "Automatically shows trimmed content in Google Mail\u2122.", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "page_action": { "default_title": "Trimless", "default_icon": { "19": "images\/icon-action-19.png", "38": "images\/icon-action-38.png" } }, "background": { "scripts": [ "vendor\/tinycolor-1.4.1.min.js", "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "vendor\/jquery-3.3.1.min.js", "contentScript.js" ], "run_at": "document_start" } ], "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage" ], "short_name": "Trimless Gmail", "applications": { "gecko": { "id": "[email protected]" } } } |