UnQuote for Gmail
Unquote text of previous mails from the reply
什么是UnQuote for Gmail?
UnQuote for Gmail是由xcelancer开发的Chrome扩展程序,该扩展的主要功能是“Unquote text of previous mails from the reply”。
扩展截图
下载UnQuote for Gmail扩展crx文件
下载UnQuote for Gmail扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
官方URL | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
简介 | Unquote text of previous mails from the reply |
文件大小 | 446 KB |
安装次数 | 441 |
当前版本 | 1.0.4 |
更新时间 | 2023-10-25 |
上架时间 | 2018-11-05 |
评分 | 3.00/5 共9次评分 |
开发者 | xcelancer |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/Vikasg7/UnQuote-for-Gmail |
帮助页面URL | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
支持的语言 | 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" } ] } |