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ファイルをダウンロード

UnQuote for Gmail拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
        }
    ]
}