Social Toolkit

A chrome extension to help generating leads from social media

Wat is Social Toolkit?

Social Toolkit is een Chrome-extensie ontwikkeld door Thomas Crane, en de belangrijkste functie is "A chrome extension to help generating leads from social media".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Social Toolkit

Download Social Toolkit-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Social Toolkit Social Toolkit
ID almjcicgoiapgkgjioobdkbgbhkhfmje
Officiële URL https://chromewebstore.google.com/detail/social-toolkit/almjcicgoiapgkgjioobdkbgbhkhfmje
Beschrijving A chrome extension to help generating leads from social media
Bestandsgrootte 610 KB
Aantal Installaties 1,777
Huidige Versie 1.0.0
Laatst Bijgewerkt 2021-04-07
Publicatiedatum 2021-04-07
Beoordeling 1.00/5 Totaal 3 Beoordelingen
Ontwikkelaar Thomas Crane
E-mail [email protected]
Betalingswijze free
URL van de Privacybeleid Pagina https://themoneyfriends.com/privacypolicy
Ondersteunde Talen 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": []
        }
    ]
}