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ファイルをダウンロード
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 |
Eメール | [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\/*" ] } |