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