UnQuote for Gmail

Unquote text of previous mails from the reply

UnQuote for Gmail là gì?

UnQuote for Gmail là một tiện ích mở rộng Chrome được phát triển bởi xcelancer, và tính năng chính của nó là "Unquote text of previous mails from the reply".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

Tải xuống tệp CRX của tiện ích mở rộng UnQuote for Gmail

Tải xuống các tệp mở rộng UnQuote for Gmail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên UnQuote for Gmail UnQuote for Gmail
ID johachenlhehijdicggbfbkdkkeikilf
URL Chính Thức https://chromewebstore.google.com/detail/unquote-for-gmail/johachenlhehijdicggbfbkdkkeikilf
Mô tả Unquote text of previous mails from the reply
Kích Thước Tệp 446 KB
Số Lần Cài Đặt 441
Phiên Bản Hiện Tại 1.0.4
Cập Nhật Lần Cuối 2023-10-25
Ngày Phát Hành 2018-11-05
Đánh Giá 3.00/5 Tổng số 9 Đánh Giá
Nhà Phát Triển xcelancer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Vikasg7/UnQuote-for-Gmail
URL Trang Trợ Giúp https://github.com/Vikasg7/UnQuote-for-Gmail/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}