Link Revealer for Gmail

Show URLs when you hover over links when using Gmail. (With Proofpoint URL Defence Support)

Link Revealer for Gmailคืออะไร?

Link Revealer for Gmail เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Robert Sheehy และคุณลักษณะหลักของมันคือ "Show URLs when you hover over links when using Gmail. (With Proofpoint URL Defence Support)"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Link Revealer for Gmail

ดาวน์โหลดไฟล์ส่วนขยาย Link Revealer for Gmail ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Show URLs when you hover over links when using Gmail.
Link Revealer for Gmail:

Modified the source code from a Chrome Extension called Link Revealer (by Julian Xhokaxhiu) to display the hyperlink contained within a Gmail message when you mouse over the link; just like wen using Outlook to read email. 

Support was also added for Proofpoint's URL rewriting functionality. When a proofpoint rewritten URL is detected, the original decoded destination of the rewritten URL will be displayed. 

This extension is based upon the v0.3 release of Link Revealer

The only difference between this and the original Link Revealer, is that it has been modified to only perform the Link Reveal action on Google's Gmail website.

Original source code can be obtained here:
SOURCE-CODE:
https://github.com/julianxhokaxhiu/chrome-link-revealer                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Link Revealer for Gmail Link Revealer for Gmail
ID glihddilckbchbhhhahdkkbnamodmdip
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/link-revealer-for-gmail/glihddilckbchbhhhahdkkbnamodmdip
คำอธิบาย Show URLs when you hover over links when using Gmail. (With Proofpoint URL Defence Support)
ขนาดไฟล์ 440 KB
จำนวนการติดตั้ง 264
เวอร์ชันปัจจุบัน 0.303
อัปเดตครั้งล่าสุด 2015-07-23
วันที่เผยแพร่ 2015-07-23
คะแนน 3.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Robert Sheehy
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Link Revealer for Gmail",
    "short_name": "Link Revealer for Gmail",
    "version": "0.303",
    "description": "Show URLs when you hover over links when using Gmail. (With Proofpoint URL Defence Support)",
    "background": {
        "scripts": [
            "js\/jquery-2.1.1.min.js",
            "js\/default.js",
            "background.js"
        ]
    },
    "options_page": "options.html",
    "icons": {
        "16": "img\/icon_16.png",
        "128": "img\/icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/mail.google.com\/*",
                "https:\/\/mail.google.com\/*"
            ],
            "permissions": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "css\/jquery.qtip.min.css",
                "css\/font-awesome.min.css"
            ],
            "js": [
                "js\/jquery-2.1.1.min.js",
                "js\/jquery.qtip.min.js",
                "js\/jquery.urldecoder.min.js",
                "js\/script.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        "fonts\/*"
    ]
}