Subject Line Generator
Create subject line in seconds
Subject Line Generator란 무엇입니까?
Subject Line Generator은(는) subject-line-generator에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Create subject line in seconds"입니다.
확장 프로그램 스크린샷
Subject Line Generator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This Gmail Extension generates catchy subject line for your email within seconds. Simply compose your email body and click on the icon located next to the subject line placement. Don’t like the subject line suggestion? Click again to generate a new one. Customize it with emojis, select your preferred language and tone of voice.
확장 프로그램 기본 정보
이름 | Subject Line Generator |
ID | mbfmlcgjcficafakcdgnckieplcnobfb |
공식 URL | https://chromewebstore.google.com/detail/subject-line-generator/mbfmlcgjcficafakcdgnckieplcnobfb |
설명 | Create subject line in seconds |
파일 크기 | 65.61 KB |
설치 횟수 | 183 |
현재 버전 | 1.5 |
최근 업데이트 | 2024-01-24 |
출시 날짜 | 2023-08-08 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | subject-line-generator |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://subjectlinegenerator.com/ |
도움말 페이지 URL | https://newsletterpilot.com |
개인정보 보호 정책 페이지 URL | https://newsletterpilot.com/slg-privacy-policy |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Subject Line Generator", "version": "1.5", "description": "Create subject line in seconds", "icons": { "16": "utils\/slg_logo.png", "48": "utils\/slg_logo.png", "128": "utils\/slg_logo.png" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "utils\/slg_logo.png", "48": "utils\/slg_logo.png", "128": "utils\/slg_logo.png" } }, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "content.js" ], "css": [ "content.css" ], "run_at": "document_start" } ], "host_permissions": [ "https:\/\/mail.google.com\/*" ] } |