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
Eメール [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": []
        }
    ]
}