Launchmaps Link Embed Tool

This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.

¿Qué es Launchmaps Link Embed Tool?

Launchmaps Link Embed Tool es una extensión de Chrome desarrollada por https://launchmaps.com, y su función principal es "This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Launchmaps Link Embed Tool

Descarga archivos de extensión Launchmaps Link Embed Tool 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

                        A neat tool that converts your LaunchMaps.com job links into beautiful gmail embeds.                    

Información Básica de la Extensión

Nombre Launchmaps Link Embed Tool Launchmaps Link Embed Tool
ID bmdfmibdpenbdcboelfioombafbomhif
URL Oficial https://chromewebstore.google.com/detail/launchmaps-link-embed-too/bmdfmibdpenbdcboelfioombafbomhif
Descripción This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.
Tamaño del Archivo 47.44 KB
Cantidad de Instalaciones 36
Versión Actual 1.0.1
Última Actualización 2017-07-27
Fecha de Publicación 2017-07-26
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://launchmaps.com
Tipo de Pago free
Sitio Web de la Extensión https://launchmaps.com
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Launchmaps Link Embed Tool",
    "description": "This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.",
    "version": "1.0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Amazing stuff!"
    },
    "permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*",
                "*:\/\/mg.mail.yahoo.com\/*"
            ],
            "css": [
                "mystyles.css"
            ],
            "js": [
                "jquery.js",
                "findAndReplaceDOMText.js",
                "key_event.js"
            ],
            "run_at": "document_end"
        }
    ]
}