Bizrobe Auto Follow up
Auto email Follow Up extension for Gmail
Bizrobe Auto Follow up란 무엇입니까?
Bizrobe Auto Follow up은(는) https://bizrobe.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto email Follow Up extension for Gmail"입니다.
확장 프로그램 스크린샷
Bizrobe Auto Follow up 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Bizrobe is a chrome extension for following up automatically on the primary email sent through gmail. This is built to reduce the time to manually check on the sent items in email and then following up with a time interval. This helps increases productivity and can be used by Sales, HR, Marketing or any functions which uses gmail for communication. Bizrobe also provides a dashboard with analytics for the users to understand the followup patterns.
확장 프로그램 기본 정보
이름 | Bizrobe Auto Follow up |
ID | hepapmlnfobfldboadbapjgmgmbenehl |
공식 URL | https://chromewebstore.google.com/detail/bizrobe-auto-follow-up/hepapmlnfobfldboadbapjgmgmbenehl |
설명 | Auto email Follow Up extension for Gmail |
파일 크기 | 159 KB |
설치 횟수 | 34 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2023-10-21 |
출시 날짜 | 2023-09-20 |
평점 | 5.00/5 총 9 개의 평점 |
개발자 | https://bizrobe.com |
이메일 | [email protected] |
결제 유형 | in_app |
확장 프로그램 웹 사이트 | https://bizrobe.com |
도움말 페이지 URL | https://bizrobe.com/support |
개인정보 보호 정책 페이지 URL | https://bizrobe.com/privacy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bizrobe Auto Follow up", "description": "Auto email Follow Up extension for Gmail", "icons": { "128": "Bizrobe_Logo.png" }, "action": { "default_popup": "popup.html" }, "version": "1.2.3", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "contentmang.js" ] }, { "matches": [ "https:\/\/mail.google.com\/mail\/*" ], "js": [ "jquery.min.js", "gmail.js", "contentmang.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "background": { "service_worker": "serviceWorker.js" }, "permissions": [ "scripting" ], "host_permissions": [ "https:\/\/mail.google.com\/mail\/*" ] } |