Trimless for Google Mail™
Automatically shows trimmed content in Google Mail™.
Trimless for Google Mail™ क्या है?
Trimless for Google Mail™ Alec Mev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically shows trimmed content in Google Mail™."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Trimless for Google Mail™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
ईमेल | [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]" } } } |