Social Toolkit
A chrome extension to help generating leads from social media
Social Toolkitคืออะไร?
Social Toolkit เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Thomas Crane และคุณลักษณะหลักของมันคือ "A chrome extension to help generating leads from social media"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Social Toolkit
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
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 |
อีเมล | [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": [] } ] } |