Wise Agent Add Contacts

Add contacts to Wise Agent from Gmail

Wise Agent Add Contacts란 무엇입니까?

Wise Agent Add Contacts은(는) https://www.wiseagent.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add contacts to Wise Agent from Gmail"입니다.

확장 프로그램 스크린샷

screenshot

Wise Agent Add Contacts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Wise Agent CRM members will be able to add contacts from their Gmail account directly to their Wise Agent account. The extension will automatically extract the name and email address of the email sender and any recipients. Additionally, users can add extra details such as phone numbers, titles, company names, sources, and categories to the contacts.                    

확장 프로그램 기본 정보

이름 Wise Agent Add Contacts Wise Agent Add Contacts
ID elpiekaehikfeikdafacpofkjenfipke
공식 URL https://chromewebstore.google.com/detail/wise-agent-add-contacts/elpiekaehikfeikdafacpofkjenfipke
설명 Add contacts to Wise Agent from Gmail
파일 크기 827 KB
설치 횟수 1,821
현재 버전 4.0
최근 업데이트 2024-02-01
출시 날짜 2020-04-27
평점 5.00/5 총 5 개의 평점
개발자 https://www.wiseagent.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.wiseagent.com
도움말 페이지 URL https://www.wiseagent.com/contact-us.asp
개인정보 보호 정책 페이지 URL https://www.thewiseagent.com/privacy.asp
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wise Agent Add Contacts",
    "short_name": "wiseagentaddcontacts",
    "version": "4.0",
    "author": "Wise Agent LLC",
    "description": "Add contacts to Wise Agent from Gmail",
    "icons": {
        "16": "WA_Logo-16x16.png",
        "48": "WA_Logo-48x48.png",
        "128": "WA_Logo-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "dist\/extensionInjector.js"
            ],
            "run_at": "document_start",
            "css": [
                "css\/extension.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/mail.google.com\/*"
    ],
    "background": {
        "service_worker": "dist\/background.js"
    },
    "externally_connectable": {
        "ids": [
            "elpiekaehikfeikdafacpofkjenfipke"
        ],
        "matches": [
            "https:\/\/mail.google.com\/*"
        ],
        "accepts_tls_channel_id": false
    },
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/gmailJsLoader.js",
                "dist\/extension.js",
                "dist\/gmailJsLoader.js.map",
                "dist\/extension.js.map",
                "dist\/angular.js",
                "dist\/angular.js.map",
                "dist\/ui.bootstrap.js",
                "dist\/ui.bootstrap.js.map",
                "dist\/select.js",
                "dist\/select.js.map",
                "dist\/extension.css",
                "\/MenuLogo-blue.svg"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ]
}