Social Toolkit

A chrome extension to help generating leads from social media

Qu'est-ce que Social Toolkit ?

Social Toolkit est une extension Chrome développée par Thomas Crane, et sa fonction principale est "A chrome extension to help generating leads from social media".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Social Toolkit

Téléchargez les fichiers d'extension Social Toolkit au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Social Toolkit Social Toolkit
ID almjcicgoiapgkgjioobdkbgbhkhfmje
URL Officiel https://chromewebstore.google.com/detail/social-toolkit/almjcicgoiapgkgjioobdkbgbhkhfmje
Description A chrome extension to help generating leads from social media
Taille du Fichier 610 KB
Nombre d'Installations 1,777
Version Actuelle 1.0.0
Dernière Mise à Jour 2021-04-07
Date de Publication 2021-04-07
Évaluation 1.00/5 Total 3 Évaluations
Développeur Thomas Crane
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://themoneyfriends.com/privacypolicy
Langues Prises en Charge 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": []
        }
    ]
}