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"
        }
    ]
}