Gmail™ Instant Title Links
Automatically turn URLs in gmail titles clickable links
Qu'est-ce que Gmail™ Instant Title Links ?
Gmail™ Instant Title Links est une extension Chrome développée par Aviche, et sa fonction principale est "Automatically turn URLs in gmail titles clickable links".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Gmail™ Instant Title Links
Téléchargez les fichiers d'extension Gmail™ Instant Title Links au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | pchdmcajhbjplgkkinpfncgenmiacpfk |
URL Officiel | https://chrome.google.com/webstore/detail/gmail-instant-title-links/pchdmcajhbjplgkkinpfncgenmiacpfk |
Description | Automatically turn URLs in gmail titles clickable links |
Taille du Fichier | 46.08 KB |
Nombre d'Installations | 13 |
Version Actuelle | 2.0 |
Dernière Mise à Jour | 2015-03-25 |
Date de Publication | 2015-03-25 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Aviche |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } ] } |