Subject Line Generator

Create subject line in seconds

Subject Line Generatorคืออะไร?

Subject Line Generator เป็นส่วนขยายของ Chrome ที่พัฒนาโดย subject-line-generator และคุณลักษณะหลักของมันคือ "Create subject line in seconds"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Subject Line Generator

ดาวน์โหลดไฟล์ส่วนขยาย 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\/*"
    ]
}