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…
Vad är SMSZap Extension?
SMSZap Extension är en Chrome-tillägg utvecklad av SMSZap, och dess huvudfunktion är "Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…".
Tilläggsskärmbilder
Ladda ner SMSZap Extension-förlängningens CRX-fil
Ladda ner SMSZap Extension-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | SMSZap Extension |
ID | edoaedgjmnjbifdbfkblcignlmlmfjlj |
Officiell webbadress | https://chromewebstore.google.com/detail/smszap-extension/edoaedgjmnjbifdbfkblcignlmlmfjlj |
Beskrivning | Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to… |
Filstorlek | 118 KB |
Antal Installationer | 37 |
Aktuell Version | 0.5 |
Senast Uppdaterad | 2022-03-09 |
Publiceringsdatum | 2021-06-29 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | SMSZap |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | http://www.smszap.com |
URL till Sekretesspolicy Sidan | https://www.smszap.com/privacy-policy |
Stödda Språk | 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\/*" ] } |