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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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\/*"
    ]
}