Vtiger Aide - Your new Personal Assistant

Vtiger Aide is always with you even when you are not using Vtiger. See your agenda, join meetings, create tasks for action items.

¿Qué es Vtiger Aide - Your new Personal Assistant?

Vtiger Aide - Your new Personal Assistant es una extensión de Chrome desarrollada por Vtiger, y su función principal es "Vtiger Aide is always with you even when you are not using Vtiger. See your agenda, join meetings, create tasks for action items.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Vtiger Aide - Your new Personal Assistant

Descarga archivos de extensión Vtiger Aide - Your new Personal Assistant en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Vtiger Aide is a feature that lets you have a seamless experience of attending meetings, taking notes, and creating action items. It is a Google Chrome extension that you can install with a few simple steps. Let us dive into the installation process.

**Managing Events**

Under the Today’s Events section, you see the events whose start date is the current date.

* Clicking on an event under Today’s Events takes you to the event’s Detail View.
* If it’s a Google Meet or Zoom Meet or Microsoft Teams meeting or Webex meetings event, you will see an option to join the meeting. Clicking on Join> will take you to the meeting link.

If the event is [Google Meet](https://help.vtiger.com/article/146450020-Using-Google-Meet) or [Zoom Meet](https://help.vtiger.com/article/148048597-Zoom-Meetings-Integration) or Microsoft Teams or Webex, you will see the Helper option. Read further to learn more.

**Helper Button**

Click the Helper button. There are multiple actions that you can take with its help.

* Click the checkmark on the left to mark the event as Held (closed).
* Mark as Held & Follow up - This option allows you to close an event (mark as Held) and create a follow-up event.
* Reschedule - This option lets you reschedule the event by selecting new start and end dates.
* Join> - You can join the meeting by clicking this button.
* Tasks - Specify the task title and press Enter to create a task (action item). You can additionally set the task status, due date, and assignee.
* Meeting notes - Add the meeting minutes here. This gets copied to the event record’s description.

If the event is of type Zoom Meet, Webex also, you get the following additional options:

* The number of invitees who joined vs. the number of invitees who did not join the meeting
* A list of invitees who joined or did not join the meeting
* An option to alert the invitees who did not join the meeting

**Managing Tasks**

The Today’s Tasks section shows tasks whose start date is the current date. Here are the actions you can perform on the task.

* Mark task as Completed
* Edit task name
* Change task status
* Change task’s due date

**Searching records**

Apart from managing your events and tasks, you can also search for relevant records from Vtiger Aide.

Follow these steps to search for records:

* Open Vtiger Aide from Google Chrome.
* Click the Search icon on the top.
* Choose a module from the drop-down on the left.
* Type a keyword in the search bar.

The search results are shown automatically as you type.

You can access Vtiger Aide from not just the CRM screen but also from any tab or page on your browser. You can be watching Ted Talks on YouTube and using Vtiger Aide at the same time.

**About Vtiger CRM**

Vtiger CRM empowers Sales, Marketing, Customer Service, and Implementation teams with the power of one view on deals, cases, contacts, and tasks.
Over 300,000 businesses use Vtiger to create delightful customer experiences that measurably improve business revenue, customer loyalty, and team performance.

**Questions or suggestions?**
Email us at [email protected]                    

Información Básica de la Extensión

Nombre Vtiger Aide - Your new Personal Assistant Vtiger Aide - Your new Personal Assistant
ID fldknjpophnlpdaefimjdklamcddaajk
URL Oficial https://chromewebstore.google.com/detail/vtiger-aide-your-new-pers/fldknjpophnlpdaefimjdklamcddaajk
Descripción Vtiger Aide is always with you even when you are not using Vtiger. See your agenda, join meetings, create tasks for action items.
Tamaño del Archivo 5.69 MB
Cantidad de Instalaciones 89
Versión Actual 1.2
Última Actualización 2022-03-26
Fecha de Publicación 2021-09-07
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Vtiger
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://www.vtiger.com/
URL de la Página de Ayuda https://help.vtiger.com/article/150760299-Vtiger-Aide-Chrome-Extension
URL de la Página de Política de Privacidad https://www.vtiger.com/policy-legal-center/privacy-policy
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.2",
    "name": "Vtiger Aide - Your new Personal Assistant",
    "description": "Vtiger Aide is always with you even when you are not using Vtiger. See your agenda, join meetings, create tasks for action items.",
    "icons": {
        "128": "assets\/images\/vtiger128.png",
        "16": "assets\/images\/vtiger16.png",
        "48": "assets\/images\/vtiger48.png"
    },
    "browser_action": {
        "default_icon": {
            "128": "assets\/images\/vtiger128.png",
            "16": "assets\/images\/vtiger16.png",
            "48": "assets\/images\/vtiger48.png"
        },
        "default_title": "Vtiger Aide"
    },
    "background": {
        "scripts": [
            "js\/libs\/jquery-3.3.1.min.js",
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "css": [],
            "js": [
                "js\/libs\/jquery-3.3.1.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_end"
        },
        {
            "css": [],
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/localhost\/*",
                "https:\/\/*.vtiger.ws\/*",
                "https:\/\/*.vtiger.com\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "background",
        "storage",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "web_accessible_resources": [
        "assets\/images\/*",
        "css\/*",
        "js\/*",
        "templates\/*"
    ]
}