SMSZap Extension
Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…
SMSZap Extension क्या है?
SMSZap Extension SMSZap द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में SMSZap Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to HubSpot automation.
एक्सटेंशन की मूल जानकारी
नाम | SMSZap Extension |
ID | edoaedgjmnjbifdbfkblcignlmlmfjlj |
आधिकारिक URL | https://chromewebstore.google.com/detail/smszap-extension/edoaedgjmnjbifdbfkblcignlmlmfjlj |
विवरण | Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to… |
फ़ाइल का आकार | 118 KB |
स्थापना संख्या | 37 |
वर्तमान संस्करण | 0.5 |
अंतिम अपडेट | 2022-03-09 |
प्रकाशन तिथि | 2021-06-29 |
रेटिंग | 5.00/5 कुल 2 रेटिंग्स |
डेवलपर | SMSZap |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | http://www.smszap.com |
गोपनीयता नीति पृष्ठ URL | https://www.smszap.com/privacy-policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SMSZap Extension", "version": "0.5", "icons": { "48": "assets\/logo.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.hubspot.com\/*" ], "js": [ "assets\/assets.js" ], "run_at": "document_idle" }, { "matches": [ "*:\/\/*.hubspot.com\/*" ], "css": [ "styles\/smszapStyle.css" ], "js": [ "js\/smszapScript.js", "js\/ooo-messaging.js" ], "run_at": "document_idle" } ], "background": { "service_worker": "background-worker.js" }, "web_accessible_resources": [ { "resources": [ "*.png", "contact.js", "\/observers\/*.js" ], "matches": [ "*:\/\/*.hubspot.com\/*" ] } ], "permissions": [ "cookies" ], "host_permissions": [ "*:\/\/*.hubspot.com\/*" ] } |