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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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.
확장 프로그램 기본 정보
이름 | |
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\/*" ] } |