Social Toolkit

A chrome extension to help generating leads from social media

Что такое Social Toolkit?

Social Toolkit - это расширение Chrome, разработанное Thomas Crane, и его основная функция - "A chrome extension to help generating leads from social media".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Social Toolkit

Скачайте файлы расширений Social Toolkit в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension helps people to save leads from Facebook, they can save any lead profile in their CRM to reach them later. The other benefit is that, users can assign them different tags based on strength of lead. It's helpful for any person using social media.
It has Login form that allows user to get login and then access their leads CRM.
CRM always helpful for generating leads organically so this is the right tool for any marketer.                    

Основная информация о расширении

Название Social Toolkit Social Toolkit
ID almjcicgoiapgkgjioobdkbgbhkhfmje
Официальный URL https://chromewebstore.google.com/detail/social-toolkit/almjcicgoiapgkgjioobdkbgbhkhfmje
Описание A chrome extension to help generating leads from social media
Размер файла 610 KB
Количество установок 1,777
Текущая Версия 1.0.0
Последнее Обновление 2021-04-07
Дата публикации 2021-04-07
Рейтинг 1.00/5 Всего 3 оценок
Разработчик Thomas Crane
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://themoneyfriends.com/privacypolicy
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension to help generating leads from social media",
    "version": "1.0.0",
    "manifest_version": 3,
    "name": "Social Toolkit",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.facebook.com\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png"
            ],
            "matches": []
        }
    ]
}