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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } ] } |