Answer with Fini

Answer questions, anywhere.

什麼是Answer with Fini?

Answer with Fini是由https://usefini.com開發的Chrome擴展程式,該擴展的主要功能是“Answer questions, anywhere.”。

擴展截圖

screenshot

下載Answer with Fini擴展crx文件

下載Answer with Fini擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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": [
                ""
            ]
        }
    ]
}