Follow up Fred
This is Follow up Fred extension.
Follow up Fred란 무엇입니까?
Follow up Fred은(는) http://followupfred.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is Follow up Fred extension."입니다.
확장 프로그램 스크린샷
Follow up Fred 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
How many times do you need to follow up with people when you send an email because they simply do not see your email in their clutter of other emails? Followup Fred is the solution to that problem. Our automated approach follows up on your behalf so that the recipients are consistently reminded that you have sent them an email and you want a response. Some of the core features of Followup Fred include: - Automate sending follow up emails to people who have not yet replied to you - Easy to use and understand dashboard - Tracks whether the recipients respond to your emails - Tracking email opens and link clicks within emails - Scheduling emails for later send (Coming soon) - Reminders to remind you of when you need to do specific tasks (Coming soon)
확장 프로그램 기본 정보
이름 | |
ID | nbdgngmdbhhnbnfdefclfldehdopdjbc |
공식 URL | https://chrome.google.com/webstore/detail/follow-up-fred/nbdgngmdbhhnbnfdefclfldehdopdjbc |
설명 | This is Follow up Fred extension. |
파일 크기 | 972 KB |
설치 횟수 | 71 |
현재 버전 | 2020.6.7027 |
최근 업데이트 | 2020-06-06 |
출시 날짜 | 2020-06-04 |
평점 | 4.17/5 총 12 개의 평점 |
개발자 | http://followupfred.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://followupfred.com |
개인정보 보호 정책 페이지 URL | https://followupfred.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "description": "__MSG_extDesc__", "version": "2020.6.7027", "default_locale": "en", "content_scripts": [ { "matches": [ "*:\/\/mail.google.com\/*" ], "js": [ "lib\/jquery.min.js", "lib\/inboxsdk.js", "lib\/uuid.min.js", "dist\/main.js" ], "css": [ "dist\/main.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "lib\/hot-reload.js", "dist\/background.js" ] }, "options_ui": { "page": "dist\/options.html", "chrome_style": true }, "icons": { "16": "icons\/inbox_16.png", "48": "icons\/inbox_48.png", "128": "icons\/inbox_128.png" }, "browser_action": { "default_icon": "icons\/inbox_128.png", "default_title": "__MSG_extName__", "default_popup": "dist\/popup.html" }, "permissions": [ "tabs", "storage", "cookies", "gcm", "notifications", "*:\/\/mail.google.com\/*", "*:\/\/*.followupfred.com\/*", "webRequest", "webRequestBlocking", "*:\/\/*.googleusercontent.com\/*" ], "web_accessible_resources": [ "icons\/*.*", "lib\/*.*" ], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';" } |