Auto Expander for Gmail™
Automatically expands too long mails in Gmail™.
Auto Expander for Gmail™ क्या है?
Auto Expander for Gmail™ Jacob "kurtextrem" Groß द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically expands too long mails in Gmail™."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Auto Expander for Gmail™ एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Auto Expander for Gmail™ |
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ß |
ईमेल | [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\/*" ] } |