Answer with Fini

Answer questions, anywhere.

Answer with Fini란 무엇입니까?

Answer with Fini은(는) https://usefini.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Answer questions, anywhere."입니다.

확장 프로그램 스크린샷

screenshot

Answer with Fini 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Answer with Fini is a Chrome extension that helps customer service agents respond to customer inquiries quickly and accurately. With Answer with Fini, agents can select the text of a customer inquiry and generate a response in just seconds. It eliminates the need for manual research and provides agents with access to freshly written replies tailored to the customer’s question. Answer with Fini simplifies customer service and improves the customer experience.                    

확장 프로그램 기본 정보

이름 Answer with Fini Answer with Fini
ID jngdlmanpdoimiefimnhjaaginpolpgb
공식 URL https://chromewebstore.google.com/detail/answer-with-fini/jngdlmanpdoimiefimnhjaaginpolpgb
설명 Answer questions, anywhere.
파일 크기 86.51 KB
설치 횟수 94
현재 버전 0.0.3
최근 업데이트 2023-04-10
출시 날짜 2023-02-18
평점 5.00/5 총 5 개의 평점
개발자 https://usefini.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.usefini.com
개인정보 보호 정책 페이지 URL https://www.usefini.com/company/legal
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Answer with Fini",
    "version": "0.0.3",
    "description": "Answer questions, anywhere.",
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/32x32.png",
        "48": "images\/48x48.png",
        "128": "images\/128x128.png"
    },
    "options_page": "options.html",
    "action": [],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentscript.js",
                "jquery.slim.min.js",
                "bootstrap.bundle.min.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "contextMenus",
        "activeTab",
        "storage",
        "clipboardWrite"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "host_permissions": [
        "https:\/\/app.usefini.com\/api\/*"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "bootstrap.min.css"
            ],
            "matches": [
                ""
            ]
        }
    ]
}