Social Toolkit
A chrome extension to help generating leads from social media
Apa itu Social Toolkit?
Social Toolkit adalah ekstensi Chrome yang dikembangkan oleh Thomas Crane, dan fitur utamanya adalah "A chrome extension to help generating leads from social media".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Social Toolkit
Unduh file ekstensi Social Toolkit dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | Social Toolkit |
ID | almjcicgoiapgkgjioobdkbgbhkhfmje |
URL Resmi | https://chromewebstore.google.com/detail/social-toolkit/almjcicgoiapgkgjioobdkbgbhkhfmje |
Deskripsi | A chrome extension to help generating leads from social media |
Ukuran File | 610 KB |
Jumlah Instalasi | 1,777 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2021-04-07 |
Tanggal Publikasi | 2021-04-07 |
Penilaian | 1.00/5 Total 3 Penilaian |
Pengembang | Thomas Crane |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Kebijakan Privasi | https://themoneyfriends.com/privacypolicy |
Bahasa yang Didukung | 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": [] } ] } |