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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Value Add, και η κύρια λειτουργία του είναι "Reply to long emails point-by-point. Highlight text, press a button, and the quote shows up in your compose window.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Re:format Gmail inline replies
Λήψη αρχείων επέκτασης 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 |
ID | akndolpagcjaolannkpophkacklomagp |
Επίσημο URL | 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 } |