UnQuote for Gmail

Unquote text of previous mails from the reply

UnQuote for Gmail क्या है?

UnQuote for Gmail xcelancer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Unquote text of previous mails from the reply"।

एक्सटेंशन स्क्रीनशॉट्स

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में UnQuote for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
        }
    ]
}