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.

什麼是Re:format Gmail inline replies?

Re:format Gmail inline replies是由Value Add開發的Chrome擴展程式,該擴展的主要功能是“Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.”。

擴展截圖

screenshot
screenshot

下載Re:format Gmail inline replies擴展crx文件

下載Re:format Gmail inline replies擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Re:format Gmail inline replies Re:format Gmail inline replies
ID akndolpagcjaolannkpophkacklomagp
官方網址 https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp
簡介 Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.
檔案大小 27.42 KB
安裝次數 1,497
目前版本 0.0.12
更新時間 2022-01-10
上架時間 2020-07-07
評分 4.89/5 共 9 次評分
開發者 Value Add
電子郵箱 [email protected]
付費類型 free
支援的語言 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
}