Trello Linkedin Helper

linkedin-trello Linkedin to Trello connector to follow the status of your hiring process accross your organization Link to the…

¿Qué es Trello Linkedin Helper?

Trello Linkedin Helper es una extensión de Chrome desarrollada por jean-louis.queguiner, y su función principal es "linkedin-trello Linkedin to Trello connector to follow the status of your hiring process accross your organization Link to the…".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Trello Linkedin Helper

Descarga archivos de extensión Trello Linkedin Helper 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

                        linkedin-trello

Linkedin to Trello connector to follow the status of your hiring process accross your organization

Link to the Wiki . https://github.com/jqueguiner/linkedin-trello/wiki

you need a 1st degree connection to see the trello button



after adding the connection to the trello, refresh the page to get the trello card



you can share the same trello and status with you colleague (but they need to have their how trello api key in the extension) and you need to invite them to the recruiting board

you can change the status of the recruiting process in 1 click from linkedin

you can add comment in 1 click

all the organisation gets the same status for the process (candidate not contacted twice!)

you can view the status of all you candidate pool from the trello board directly to have a 360 view of your candidates pipeline 

Happy recruiting and feel free to contribute                    

Información Básica de la Extensión

Nombre Trello Linkedin Helper Trello Linkedin Helper
ID bljigloeikaihodehchnpcnpgbhplcdp
URL Oficial https://chromewebstore.google.com/detail/trello-linkedin-helper/bljigloeikaihodehchnpcnpgbhplcdp
Descripción linkedin-trello Linkedin to Trello connector to follow the status of your hiring process accross your organization Link to the…
Tamaño del Archivo 188 KB
Cantidad de Instalaciones 92
Versión Actual 0.6
Última Actualización 2018-07-26
Fecha de Publicación 2018-07-26
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador jean-louis.queguiner
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/jqueguiner/linkedin-trello
URL de la Página de Ayuda https://github.com/jqueguiner/linkedin-trello/wiki
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Trello Linkedin Helper",
    "version": "0.6",
    "manifest_version": 2,
    "description": "",
    "page_action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        }
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "settings\/options.html"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.linkedin.com\/in\/*",
                "*:\/\/*.linkedin.com\/search\/results\/*"
            ],
            "js": [
                "lib\/jquery.js",
                "lib\/trello_client.js",
                "lib\/trello.embed.min.js",
                "trello_trigger.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ],
    "permissions": [
        "tabs",
        "*:\/\/*.linkedin.com\/in\/*",
        "storage"
    ],
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "content_security_policy": "connect-src 'self' https:\/\/trello.com; script-src 'self' https:\/\/trello.com; object-src 'self' https:\/\/trello.com;"
}