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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย SMSZap Extension
ดาวน์โหลดไฟล์ส่วนขยาย SMSZap Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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\/*" ] } |