Launchmaps Link Embed Tool

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

Co to jest Launchmaps Link Embed Tool?

Launchmaps Link Embed Tool to rozszerzenie Chrome opracowane przez https://launchmaps.com, a jego główną funkcją jest „This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Launchmaps Link Embed Tool

Pobierz pliki rozszerzeń Launchmaps Link Embed Tool w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Launchmaps Link Embed Tool Launchmaps Link Embed Tool
ID bmdfmibdpenbdcboelfioombafbomhif
Oficjalny URL https://chromewebstore.google.com/detail/launchmaps-link-embed-too/bmdfmibdpenbdcboelfioombafbomhif
Opis This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.
Rozmiar pliku 47.44 KB
Liczba instalacji 36
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2017-07-27
Data Publikacji 2017-07-26
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://launchmaps.com
Typ Płatności free
Strona Rozszerzenia https://launchmaps.com
Obsługiwane Języki 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"
        }
    ]
}