Social Toolkit
A chrome extension to help generating leads from social media
Social Toolkit là gì?
Social Toolkit là một tiện ích mở rộng Chrome được phát triển bởi Thomas Crane, và tính năng chính của nó là "A chrome extension to help generating leads from social media".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Social Toolkit
Tải xuống các tệp mở rộng Social Toolkit dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Social Toolkit |
ID | almjcicgoiapgkgjioobdkbgbhkhfmje |
URL Chính Thức | https://chromewebstore.google.com/detail/social-toolkit/almjcicgoiapgkgjioobdkbgbhkhfmje |
Mô tả | A chrome extension to help generating leads from social media |
Kích Thước Tệp | 610 KB |
Số Lần Cài Đặt | 1,777 |
Phiên Bản Hiện Tại | 1.0.0 |
Cập Nhật Lần Cuối | 2021-04-07 |
Ngày Phát Hành | 2021-04-07 |
Đánh Giá | 1.00/5 Tổng số 3 Đánh Giá |
Nhà Phát Triển | Thomas Crane |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Chính Sách Bảo Mật | https://themoneyfriends.com/privacypolicy |
Ngôn Ngữ Được Hỗ Trợ | 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": [] } ] } |