Gmail™ Instant Title Links

Automatically turn URLs in gmail titles clickable links

Wat is Gmail™ Instant Title Links?

Gmail™ Instant Title Links is een Chrome-extensie ontwikkeld door Aviche, en de belangrijkste functie is "Automatically turn URLs in gmail titles clickable links".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Gmail™ Instant Title Links

Download Gmail™ Instant Title Links-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        When people share a website the copy the url and in many cases simply paste it in the email's title...
The thing is that for some reason Gmail™ doesn't change the url in email titles into a link which means you need to copy it and paste it in the browser...

Now lets admit, this isn't a real big problem... but wouldn't it be nice if you can turn those URL titles into links?
Well now you can... Just add this extension and and UrL that appears in your email title will be turned into a link :-)

Enjoy                    

Basisinformatie over de Extensie

Naam Gmail™ Instant Title Links Gmail™ Instant Title Links
ID pchdmcajhbjplgkkinpfncgenmiacpfk
Officiële URL https://chrome.google.com/webstore/detail/gmail-instant-title-links/pchdmcajhbjplgkkinpfncgenmiacpfk
Beschrijving Automatically turn URLs in gmail titles clickable links
Bestandsgrootte 46.08 KB
Aantal Installaties 13
Huidige Versie 2.0
Laatst Bijgewerkt 2015-03-25
Publicatiedatum 2015-03-25
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar Aviche
Betalingswijze free
Ondersteunde Talen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Gmail\u2122 Instant Title Links",
    "description": "Automatically turn URLs in gmail titles clickable links",
    "version": "2.0",
    "permissions": [
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "activeTab",
        "webNavigation"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ]
}