Just Not Sorry -- the Chrome extension
A Chrome extension that warns you when you write emails using words which undermine your message
Τι είναι το Just Not Sorry -- the Chrome extension;
Το Just Not Sorry -- the Chrome extension είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Def Method, και η κύρια λειτουργία του είναι "A Chrome extension that warns you when you write emails using words which undermine your message".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Just Not Sorry -- the Chrome extension
Λήψη αρχείων επέκτασης Just Not Sorry -- the Chrome extension σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
We're Just NOT Sorry! Let's build awareness of how we qualify our message and diminish our voice. Inspired by the writings of Tara Mohr and others, this Chrome Extension for Gmail and Outlook for web helps you send more confident emails by warning you when you use words which undermine your message. Commonly used qualifying words and phrases are underlined for you to choose how you want to address them. Hover over the underline to see additional information about how using the phrase is perceived. (Don't worry, the underline won't get sent as part of your email if you decide to ignore it.) Created by Tami Reiss, Steve Brudz, Manish Kakwani, and Eric Tillberg of Def Method (www.defmethod.com).
Βασικές Πληροφορίες Επέκτασης
Όνομα | Just Not Sorry -- the Chrome extension |
ID | fmegmibednnlgojepmidhlhpjbppmlci |
Επίσημο URL | https://chromewebstore.google.com/detail/just-not-sorry-the-chrome/fmegmibednnlgojepmidhlhpjbppmlci |
Περιγραφή | A Chrome extension that warns you when you write emails using words which undermine your message |
Μέγεθος Αρχείου | 108 KB |
Αριθμός Εγκαταστάσεων | 26,554 |
Τρέχουσα Έκδοση | 2.4.0 |
Τελευταία Ενημέρωση | 2022-11-23 |
Ημερομηνία Δημοσίευσης | 2020-04-27 |
Αξιολόγηση | 3.72/5 Συνολικά 74 Αξιολογήσεις |
Προγραμματιστής | Def Method |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://justnotsorry.com/ |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/defmethodinc/just-not-sorry/issues |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Just Not Sorry -- the Chrome extension", "short_name": "JustNotSorry", "author": "Steve Brudz, Manish Kakwani, Tami Reiss, and Eric Tillberg of Def Method", "version": "2.4.0", "version_name": "2.4.0", "description": "A Chrome extension that warns you when you write emails using words which undermine your message", "icons": { "16": "img\/JustNotSorry-16.png", "48": "img\/JustNotSorry-48.png", "128": "img\/JustNotSorry-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*", "https:\/\/outlook.office.com\/*", "https:\/\/outlook.live.com\/*", "https:\/\/outlook.office365.com\/*" ], "css": [ ".\/just-not-sorry.css" ], "js": [ "bundle.js" ] } ], "background": { "service_worker": "background.js" }, "action": { "default_icon": { "19": "img\/JustNotSorry-19.png", "38": "img\/JustNotSorry-38.png" }, "default_title": "Just Not Sorry" }, "options_ui": { "page": "options.html", "open_in_tab": false }, "web_accessible_resources": [], "permissions": [ "notifications" ] } |