UnQuote for Gmail
Unquote text of previous mails from the reply
Co to jest UnQuote for Gmail?
UnQuote for Gmail to rozszerzenie Chrome opracowane przez xcelancer, a jego główną funkcją jest „Unquote text of previous mails from the reply”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia UnQuote for Gmail
Pobierz pliki rozszerzeń UnQuote for Gmail w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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!
Podstawowe informacje o rozszerzeniu
Nazwa | UnQuote for Gmail |
ID | johachenlhehijdicggbfbkdkkeikilf |
Oficjalny URL | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf |
Opis | Unquote text of previous mails from the reply |
Rozmiar pliku | 446 KB |
Liczba instalacji | 441 |
Aktualna Wersja | 1.0.4 |
Ostatnia Aktualizacja | 2023-10-25 |
Data Publikacji | 2018-11-05 |
Ocena | 3.00/5 Łącznie 9 Oceny |
Deweloper | xcelancer |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Vikasg7/UnQuote-for-Gmail |
Adres URL Strony Pomocy | https://github.com/Vikasg7/UnQuote-for-Gmail/issues |
Obsługiwane Języki | 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" } ] } |