Re:format Gmail inline replies

Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.

Apa itu Re:format Gmail inline replies?

Re:format Gmail inline replies adalah ekstensi Chrome yang dikembangkan oleh Value Add, dan fitur utamanya adalah "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Re:format Gmail inline replies

Unduh file ekstensi Re:format Gmail inline replies dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        We add a button to your compose window. When replying, you can highlight text you want to respond to, push our button, and we'll add the quoted text right in your compose view. 

Also, you might like my other extension, which lets you take notes from your tab:
https://chrome.google.com/webstore/detail/jotter/icdbglcdnjonofjpcfpcgpjjchokgnjl                    

Informasi Dasar Ekstensi

Nama Re:format Gmail inline replies Re:format Gmail inline replies
ID akndolpagcjaolannkpophkacklomagp
URL Resmi https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp
Deskripsi Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.
Ukuran File 27.42 KB
Jumlah Instalasi 1,497
Versi Saat Ini 0.0.12
Terakhir Diperbarui 2022-01-10
Tanggal Publikasi 2020-07-07
Penilaian 4.89/5 Total 9 Penilaian
Pengembang Value Add
Email [email protected]
Tipe Pembayaran free
Bahasa yang Didukung en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Re:format Gmail inline replies",
    "description": "Reply to long emails point-by-point.  Highlight text, press a button, and the quote shows up in your compose window.",
    "version": "0.0.12",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "inboxsdk.js",
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/mail.google.com\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "button_q.png"
    ],
    "icons": {
        "128": "icons_128_resized_from_website.png"
    },
    "commands": {
        "QUOTE": {
            "suggested_key": {
                "default": "Ctrl+Shift+B",
                "linux": "Ctrl+Shift+B",
                "mac": "Ctrl+Shift+B",
                "windows": "Ctrl+Shift+B"
            },
            "description": "Quote by keyboard."
        }
    },
    "manifest_version": 2
}