Gmail™ Instant Title Links
Automatically turn URLs in gmail titles clickable links
Apa itu Gmail™ Instant Title Links?
Gmail™ Instant Title Links adalah ekstensi Chrome yang dikembangkan oleh Aviche, dan fitur utamanya adalah "Automatically turn URLs in gmail titles clickable links".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Gmail™ Instant Title Links
Unduh file ekstensi Gmail™ Instant Title Links dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | |
ID | pchdmcajhbjplgkkinpfncgenmiacpfk |
URL Resmi | https://chrome.google.com/webstore/detail/gmail-instant-title-links/pchdmcajhbjplgkkinpfncgenmiacpfk |
Deskripsi | Automatically turn URLs in gmail titles clickable links |
Ukuran File | 46.08 KB |
Jumlah Instalasi | 13 |
Versi Saat Ini | 2.0 |
Terakhir Diperbarui | 2015-03-25 |
Tanggal Publikasi | 2015-03-25 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | Aviche |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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" ] } ] } |