Social Toolkit
A chrome extension to help generating leads from social media
Social Toolkit क्या है?
Social Toolkit Thomas Crane द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension to help generating leads from social media"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Social Toolkit एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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": [] } ] } |