Elevio Chrome Extension

Get instant access to your team's product knowledge, wherever you need it

Elevio Chrome Extensionとは何ですか?

Elevio Chrome Extensionはhttps://elev.ioによって開発されたChromeの拡張機能で、その主な機能は「Get instant access to your team's product knowledge, wherever you need it」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Elevio Chrome Extension拡張機能のCRXファイルをダウンロード

Elevio Chrome Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Elevio makes it easy to capture product knowledge from your team, and deliver it to your customers. Deflect incoming tickets and reduce support loads with increased productivity for both your staff and your customers.

Quick access to Product Knowledge

Use this plugin to quickly search your product knowledge, copying help content & Knowledge Base links. Create new articles where you have gaps, no matter where you are on the web.

Preview the Elevio Assistant Anywhere

With a single click, you can preview the Elevio Assistant on your site. No need to install anything. This makes it super easy to get started.

More to come…                    

拡張機能の基本情報

名前 Elevio Chrome Extension Elevio Chrome Extension
ID pblmcgjnafoofnkhkejhigamjfkbcbgk
公式URL https://chromewebstore.google.com/detail/elevio-chrome-extension/pblmcgjnafoofnkhkejhigamjfkbcbgk
説明 Get instant access to your team's product knowledge, wherever you need it
ファイルサイズ 1.1 MB
インストール数 535
現在のバージョン 1.0.8
最終更新日 2024-01-10
公開日 2020-05-16
評価 5.00/5 合計 3 レビュー
開発者 https://elev.io
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://elev.io
ヘルプページのURL https://docs.elevio.help/en/articles/81806
プライバシーポリシーページのURL https://elev.io/legal/privacy-policy
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Get instant access to your team's product knowledge, wherever you need it",
    "version": "1.0.8",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "manifest_version": 2,
    "name": "Elevio Chrome Extension",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Elevio"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "icons": {
        "16": "assets\/logo-16x16.png",
        "48": "assets\/logo-48x48.png",
        "128": "assets\/logo-128x128.png"
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Shift+Ctrl+E"
            }
        }
    },
    "permissions": [
        "storage",
        "activeTab",
        "identity"
    ],
    "web_accessible_resources": [
        "embeddedScript.js",
        "clearElev.js",
        "installationDetector.js"
    ]
}