Subject Line Generator
Create subject line in seconds
What is Subject Line Generator?
Subject Line Generator is a Chrome extension developed by subject-line-generator, and its main feature is "Create subject line in seconds".
Extension Screenshots
Download Subject Line Generator Extension CRX File
Download Subject Line Generator extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Subject Line Generator |
ID | mbfmlcgjcficafakcdgnckieplcnobfb |
Official URL | https://chromewebstore.google.com/detail/subject-line-generator/mbfmlcgjcficafakcdgnckieplcnobfb |
Description | Create subject line in seconds |
File Size | 65.61 KB |
Installation Count | 183 |
Current Version | 1.5 |
Last Updated | 2024-01-24 |
Publish Date | 2023-08-08 |
Rating | 5.00/5 Total 1 Ratings |
Developer | subject-line-generator |
[email protected] | |
Payment Type | free |
Extension Website | https://subjectlinegenerator.com/ |
Help Page URL | https://newsletterpilot.com |
Privacy Policy Page URL | https://newsletterpilot.com/slg-privacy-policy |
Supported Languages | 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\/*" ] } |