Elevio Chrome Extension

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

Qu'est-ce que Elevio Chrome Extension ?

Elevio Chrome Extension est une extension Chrome développée par https://elev.io, et sa fonction principale est "Get instant access to your team's product knowledge, wherever you need it".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Elevio Chrome Extension

Téléchargez les fichiers d'extension Elevio Chrome Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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…                    

Informations de Base sur l'Extension

Nom Elevio Chrome Extension Elevio Chrome Extension
ID pblmcgjnafoofnkhkejhigamjfkbcbgk
URL Officiel https://chromewebstore.google.com/detail/elevio-chrome-extension/pblmcgjnafoofnkhkejhigamjfkbcbgk
Description Get instant access to your team's product knowledge, wherever you need it
Taille du Fichier 1.1 MB
Nombre d'Installations 535
Version Actuelle 1.0.8
Dernière Mise à Jour 2024-01-10
Date de Publication 2020-05-16
Évaluation 5.00/5 Total 3 Évaluations
Développeur https://elev.io
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://elev.io
URL de la Page d'Aide https://docs.elevio.help/en/articles/81806
URL de la Page de Politique de Confidentialité https://elev.io/legal/privacy-policy
Langues Prises en Charge 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"
    ]
}