Auto BCC for Gmail™
Automatically add BCC/CC fields when you send emails. Allow different BCC/CC addresses per each of your Gmail accounts.
Auto BCC for Gmail™란 무엇입니까?
Auto BCC for Gmail™은(는) https://autobcc.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically add BCC/CC fields when you send emails. Allow different BCC/CC addresses per each of your Gmail accounts."입니다.
확장 프로그램 스크린샷
Auto BCC for Gmail™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
★ Features of "Auto BCC for Gmail™" extension: ✔ Integrated with Gmail UI, auto add BCC & CC email addresses based on your config. Allow different BCC & CC addresses per each of your Gmail accounts. ✔ Write mails conveniently by auto pop-out Reply/Forward to a stand-alone compose window and expand it to maximized size. ✔ Import/Export settings to set up Auto BCC quickly on both your work & home computers. ★ Example of usage: Auto BCC all emails from "[email protected]" to "[email protected]" and all emails from "[email protected]" to "[email protected]" ★ AUTO BCC extension is developed and maintained by autobcc.com team - If you run into a problem, contact us at [email protected]
확장 프로그램 기본 정보
이름 | Auto BCC for Gmail™ |
ID | hfjgikgjcgdhlklibkcobckkhklaeodd |
공식 URL | https://chromewebstore.google.com/detail/auto-bcc-for-gmail/hfjgikgjcgdhlklibkcobckkhklaeodd |
설명 | Automatically add BCC/CC fields when you send emails. Allow different BCC/CC addresses per each of your Gmail accounts. |
파일 크기 | 93.38 KB |
설치 횟수 | 38,342 |
현재 버전 | 2023.1.21.0 |
최근 업데이트 | 2023-01-28 |
출시 날짜 | 2020-06-26 |
평점 | 3.62/5 총 465 개의 평점 |
개발자 | https://autobcc.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://autobcc.com/auto-bcc-cc-for-gmail-and-inbox-extension/ |
도움말 페이지 URL | https://autobcc.com/contact-us/ |
개인정보 보호 정책 페이지 URL | https://autobcc.com/privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "version": "2023.1.21.0", "short_name": "AutoBcc", "name": "Auto BCC for Gmail\u2122", "description": "__MSG_extDescription__", "default_locale": "en", "background": { "service_worker": "background.js" }, "options_page": "options.html", "content_scripts": [ { "all_frames": false, "run_at": "document_end", "css": [ "sweetalert.css" ], "js": [ "jquery.js", "sweetalert.js", "bcc.js" ], "matches": [ "https:\/\/mail.google.com\/*" ] }, { "all_frames": false, "run_at": "document_end", "js": [ "license.js" ], "matches": [ "https:\/\/paygate.autobcc.com\/payments\/license_key\/*" ] } ], "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "action": { "default_icon": "icon32.png", "default_title": "Auto Bcc" }, "permissions": [ "storage", "alarms" ], "host_permissions": [ "https:\/\/*.autobcc.com\/*", "https:\/\/mail.google.com\/*" ], "manifest_version": 3 } |