Launchmaps Link Embed Tool

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

Vad är Launchmaps Link Embed Tool?

Launchmaps Link Embed Tool är en Chrome-tillägg utvecklad av https://launchmaps.com, och dess huvudfunktion är "This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.".

Tilläggsskärmbilder

screenshot

Ladda ner Launchmaps Link Embed Tool-förlängningens CRX-fil

Ladda ner Launchmaps Link Embed Tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn Launchmaps Link Embed Tool Launchmaps Link Embed Tool
ID bmdfmibdpenbdcboelfioombafbomhif
Officiell webbadress https://chromewebstore.google.com/detail/launchmaps-link-embed-too/bmdfmibdpenbdcboelfioombafbomhif
Beskrivning This extension will embed a nice HTML module whenever user types the job URL from the Launchmaps.com website.
Filstorlek 47.44 KB
Antal Installationer 36
Aktuell Version 1.0.1
Senast Uppdaterad 2017-07-27
Publiceringsdatum 2017-07-26
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://launchmaps.com
Betalningssätt free
Tilläggswebbplats https://launchmaps.com
Stödda Språk 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"
        }
    ]
}