Gmail™ Instant Title Links
Automatically turn URLs in gmail titles clickable links
O que é Gmail™ Instant Title Links?
Gmail™ Instant Title Links é uma extensão do Chrome desenvolvida por Aviche, e sua principal característica é "Automatically turn URLs in gmail titles clickable links".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Gmail™ Instant Title Links
Baixe arquivos de extensão Gmail™ Instant Title Links no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | pchdmcajhbjplgkkinpfncgenmiacpfk |
URL Oficial | https://chrome.google.com/webstore/detail/gmail-instant-title-links/pchdmcajhbjplgkkinpfncgenmiacpfk |
Descrição | Automatically turn URLs in gmail titles clickable links |
Tamanho do Arquivo | 46.08 KB |
Contagem de Instalações | 13 |
Versão Atual | 2.0 |
Última Atualização | 2015-03-25 |
Data de Publicação | 2015-03-25 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Aviche |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } ] } |