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.

Vad är Re:format Gmail inline replies?

Re:format Gmail inline replies är en Chrome-tillägg utvecklad av Value Add, och dess huvudfunktion är "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Re:format Gmail inline replies-förlängningens CRX-fil

Ladda ner Re:format Gmail inline replies-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Re:format Gmail inline replies Re:format Gmail inline replies
ID akndolpagcjaolannkpophkacklomagp
Officiell webbadress https://chromewebstore.google.com/detail/reformat-gmail-inline-rep/akndolpagcjaolannkpophkacklomagp
Beskrivning Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.
Filstorlek 27.42 KB
Antal Installationer 1,497
Aktuell Version 0.0.12
Senast Uppdaterad 2022-01-10
Publiceringsdatum 2020-07-07
Betyg 4.89/5 Totalt 9 Betyg
Utvecklare Value Add
E-post [email protected]
Betalningssätt free
Stödda Språk 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
}