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은(는) Def Method에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension that warns you when you write emails using words which undermine your message"입니다.
확장 프로그램 스크린샷
Just Not Sorry -- the Chrome extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" ] } |