Gmail™ Instant Title Links
Automatically turn URLs in gmail titles clickable links
什么是Gmail™ Instant Title Links?
Gmail™ Instant Title Links是由Aviche开发的Chrome扩展程序,该扩展的主要功能是“Automatically turn URLs in gmail titles clickable links”。
扩展截图
下载Gmail™ Instant Title Links扩展crx文件
下载Gmail™ Instant Title Links扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | pchdmcajhbjplgkkinpfncgenmiacpfk |
官方URL | https://chrome.google.com/webstore/detail/gmail-instant-title-links/pchdmcajhbjplgkkinpfncgenmiacpfk |
简介 | Automatically turn URLs in gmail titles clickable links |
文件大小 | 46.08 KB |
安装次数 | 13 |
当前版本 | 2.0 |
更新时间 | 2015-03-25 |
上架时间 | 2015-03-25 |
评分 | 5.00/5 共1次评分 |
开发者 | Aviche |
付费类型 | free |
支持的语言 | 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" ] } ] } |