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 |
官方網址 | 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" } ] } |