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 |
官方網址 | 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 |
電子郵箱 | [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 } |