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…
Hvad er SMSZap Extension?
SMSZap Extension er en Chrome-udvidelse udviklet af SMSZap, og dens hovedfunktion er "Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to…".
Udvidelsesskærmbilleder
Download SMSZap Extension-udvidelses-CRX-fil
Download SMSZap Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | SMSZap Extension |
ID | edoaedgjmnjbifdbfkblcignlmlmfjlj |
Officiel URL | https://chromewebstore.google.com/detail/smszap-extension/edoaedgjmnjbifdbfkblcignlmlmfjlj |
Beskrivelse | Users can send bulk SMS messages through lists in HubSpot. This will allow users to send mass SMS texts even without access to… |
Filstørrelse | 118 KB |
Antal Installationer | 37 |
Nuværende Version | 0.5 |
Senest Opdateret | 2022-03-09 |
Udgivelsesdato | 2021-06-29 |
Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
Udvikler | SMSZap |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | http://www.smszap.com |
URL til Fortrolighedspolitik Side | https://www.smszap.com/privacy-policy |
Understøttede Sprog | 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\/*" ] } |