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是由Robert Sheehy開發的Chrome擴展程式,該擴展的主要功能是“Show URLs when you hover over links when using Gmail. (With Proofpoint URL Defence Support)”。

擴展截圖

screenshot

下載Link Revealer for Gmail擴展crx文件

下載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
官方網址 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\/*"
    ]
}