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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show URLs when you hover over links when using Gmail. (With Proofpoint URL Defence Support)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Link Revealer for Gmail एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}