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…
Cos'è SMSZap Extension?
SMSZap Extension è un'estensione di Chrome sviluppata da SMSZap, e la sua funzione principale è "Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione SMSZap Extension
Scarica i file di estensione SMSZap Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | SMSZap Extension |
ID | edoaedgjmnjbifdbfkblcignlmlmfjlj |
URL Ufficiale | https://chromewebstore.google.com/detail/smszap-extension/edoaedgjmnjbifdbfkblcignlmlmfjlj |
Descrizione | Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to… |
Dimensione del File | 118 KB |
Conteggio Installazioni | 37 |
Versione Corrente | 0.5 |
Ultimo Aggiornamento | 2022-03-09 |
Data di Pubblicazione | 2021-06-29 |
Valutazione | 5.00/5 Totale 2 Valutazioni |
Sviluppatore | SMSZap |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://www.smszap.com |
URL della Pagina della Politica sulla Privacy | https://www.smszap.com/privacy-policy |
Lingue Supportate | 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\/*" ] } |