Social Toolkit

A chrome extension to help generating leads from social media

什么是Social Toolkit?

Social Toolkit是由Thomas Crane开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to help generating leads from social media”。

扩展截图

screenshot
screenshot
screenshot

下载Social Toolkit扩展crx文件

下载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": []
        }
    ]
}