Salespal
Automate sales follow ups directly through your Gmail.
Salespalとは何ですか?
Salespalはhttps://salespal.ioによって開発されたChromeの拡張機能で、その主な機能は「Automate sales follow ups directly through your Gmail.」です。
拡張機能のスクリーンショット
Salespal拡張機能のCRXファイルをダウンロード
Salespal拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Automate sales follow ups directly through your Gmail. To use this tool, sign up for a Salespal account at www.salespal.io!
拡張機能の基本情報
名前 | Salespal |
ID | kkhfghobgopeoblfljoehpljlmpobenf |
公式URL | https://chromewebstore.google.com/detail/salespal/kkhfghobgopeoblfljoehpljlmpobenf |
説明 | Automate sales follow ups directly through your Gmail. |
ファイルサイズ | 373 KB |
インストール数 | 55 |
現在のバージョン | 1.0.5 |
最終更新日 | 2023-10-26 |
公開日 | 2023-09-18 |
評価 | 5.00/5 合計 8 レビュー |
開発者 | https://salespal.io |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://salespal.io |
ヘルプページのURL | https://salespal.io |
プライバシーポリシーページのURL | https://salespal.io/privacy |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salespal", "version": "1.0.5", "description": "Automate sales follow ups directly through your Gmail.", "permissions": [ "storage" ], "externally_connectable": { "ids": [ "*" ], "matches:": [ "https:\/\/mail.google.com\/*" ] }, "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "inject.js" ], "css": [ "assets\/style.css" ] }, { "matches": [ "https:\/\/app.salespal.io\/*", "http:\/\/localhost:5173\/*" ], "js": [ "injectFE.js" ], "run_at": "document_end" } ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_title": "Salespal", "default_popup": "index.html", "default_icon": { "16": "images\/sp_16.png", "32": "images\/sp_32.png", "48": "images\/sp_48.png", "128": "images\/sp_128.png" } }, "icons": { "16": "images\/sp_16.png", "32": "images\/sp_32.png", "48": "images\/sp_48.png", "128": "images\/sp_128.png" }, "web_accessible_resources": [ { "resources": [ "images\/*", "assets\/*", "gmail.js", "extension.js", "constants.js" ], "matches": [ "https:\/\/mail.google.com\/*" ] }, { "resources": [ "constants.js" ], "matches": [ "https:\/\/app.salespal.io\/*", "http:\/\/localhost:5173\/*" ] } ], "host_permissions": [ "https:\/\/mail.google.com\/*", "https:\/\/v1.api.salespal.io\/*", "http:\/\/localhost:4000\/*" ], "manifest_version": 3 } |