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
官方網址 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\/*"
    ]
}