Trimless for Google Mail™
Automatically shows trimmed content in Google Mail™.
Qu'est-ce que Trimless for Google Mail™ ?
Trimless for Google Mail™ est une extension Chrome développée par Alec Mev, et sa fonction principale est "Automatically shows trimmed content in Google Mail™.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Trimless for Google Mail™
Téléchargez les fichiers d'extension Trimless for Google Mail™ au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Trimless for Google Mail™ |
ID | niepjjjfafhadmfdminbckmciijcaagc |
URL Officiel | https://chromewebstore.google.com/detail/trimless-for-google-mail/niepjjjfafhadmfdminbckmciijcaagc |
Description | Automatically shows trimmed content in Google Mail™. |
Taille du Fichier | 88.72 KB |
Nombre d'Installations | 30,000 |
Version Actuelle | 1.11.1 |
Dernière Mise à Jour | 2019-05-29 |
Date de Publication | 2019-05-29 |
Évaluation | 3.99/5 Total 93 Évaluations |
Développeur | Alec Mev |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/jeremejevs/trimless-gmail |
URL de la Page d'Aide | https://github.com/jeremejevs/trimless-gmail/issues |
Langues Prises en Charge | 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]" } } } |