Launchmaps Link Embed Tool

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

Что такое Launchmaps Link Embed Tool?

Launchmaps Link Embed Tool - это расширение Chrome, разработанное https://launchmaps.com, и его основная функция - "This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Launchmaps Link Embed Tool

Скачайте файлы расширений Launchmaps Link Embed Tool в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Launchmaps Link Embed Tool Launchmaps Link Embed Tool
ID bmdfmibdpenbdcboelfioombafbomhif
Официальный URL https://chromewebstore.google.com/detail/launchmaps-link-embed-too/bmdfmibdpenbdcboelfioombafbomhif
Описание This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.
Размер файла 47.44 KB
Количество установок 36
Текущая Версия 1.0.1
Последнее Обновление 2017-07-27
Дата публикации 2017-07-26
Рейтинг 5.00/5 Всего 2 оценок
Разработчик https://launchmaps.com
Тип оплаты free
Официальный сайт расширения https://launchmaps.com
Поддерживаемые языки 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"
        }
    ]
}