UnQuote for Gmail
Unquote text of previous mails from the reply
Vad är UnQuote for Gmail?
UnQuote for Gmail är en Chrome-tillägg utvecklad av xcelancer, och dess huvudfunktion är "Unquote text of previous mails from the reply".
Tilläggsskärmbilder
Ladda ner UnQuote for Gmail-förlängningens CRX-fil
Ladda ner UnQuote for Gmail-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        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!                     Grundläggande Information om Tillägg
| Namn |   |  
| ID | johachenlhehijdicggbfbkdkkeikilf | 
| Officiell webbadress | https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf | 
| Beskrivning | Unquote text of previous mails from the reply | 
| Filstorlek | 446 KB | 
| Antal Installationer | 441 | 
| Aktuell Version | 1.0.4 | 
| Senast Uppdaterad | 2023-10-25 | 
| Publiceringsdatum | 2018-11-05 | 
| Betyg | 3.00/5 Totalt 9 Betyg | 
| Utvecklare | xcelancer | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Tilläggswebbplats | https://github.com/Vikasg7/UnQuote-for-Gmail | 
| Hjälpsida URL | https://github.com/Vikasg7/UnQuote-for-Gmail/issues | 
| Stödda Språk | 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"
        }
    ]
}  |  |