UnQuote for Gmail
Unquote text of previous mails from the reply
What is UnQuote for Gmail?
UnQuote for Gmail is a Chrome extension developed by xcelancer, and its main feature is "Unquote text of previous mails from the reply".
Extension Screenshots
Download UnQuote for Gmail Extension CRX File
Download UnQuote for Gmail extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
UnQuote for Gmail is a free chrome extension that removes quoted text of previous mails from the current reply. Here is how it works :- - Download the extension. - Click on extension popup and enable it. - Reload the gmail window, if opened already. - Now open any conversation and click "Reply". - Write your reply and click Send. - It also take care of signatures and keep them intact. Report any issue here https://github.com/Vikasg7/UnQuote-for-Gmail/issues Enjoy!
Extension Basic Information
Name | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
Official URL | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
Description | Unquote text of previous mails from the reply |
File Size | 446 KB |
Installation Count | 441 |
Current Version | 1.0.4 |
Last Updated | 2023-10-25 |
Publish Date | 2018-11-05 |
Rating | 3.00/5 Total 9 Ratings |
Developer | xcelancer |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Vikasg7/UnQuote-for-Gmail |
Help Page URL | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UnQuote for Gmail", "description": "Unquote text of previous mails from the reply", "version": "1.0.4", "manifest_version": 3, "icons": { "128": "assets\/icon.png" }, "background": { "service_worker": "background\/index.js", "type": "module" }, "action": { "default_title": "UnQuote for Gmail", "default_popup": "popup\/index.html" }, "permissions": [ "storage" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "cs\/index.js" ], "run_at": "document_end" } ] } |