Subject Line Generator

Create subject line in seconds

什么是Subject Line Generator?

Subject Line Generator是由subject-line-generator开发的Chrome扩展程序,该扩展的主要功能是“Create subject line in seconds”。

扩展截图

screenshot
screenshot

下载Subject Line Generator扩展crx文件

下载Subject Line Generator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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 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\/*"
    ]
}