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
官方網址 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": []
        }
    ]
}