Gmail™ Instant Title Links

Automatically turn URLs in gmail titles clickable links

Gmail™ Instant Title Links là gì?

Gmail™ Instant Title Links là một tiện ích mở rộng Chrome được phát triển bởi Aviche, và tính năng chính của nó là "Automatically turn URLs in gmail titles clickable links".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gmail™ Instant Title Links

Tải xuống các tệp mở rộng Gmail™ Instant Title Links dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gmail™ Instant Title Links Gmail™ Instant Title Links
ID pchdmcajhbjplgkkinpfncgenmiacpfk
URL Chính Thức https://chrome.google.com/webstore/detail/gmail-instant-title-links/pchdmcajhbjplgkkinpfncgenmiacpfk
Mô tả Automatically turn URLs in gmail titles clickable links
Kích Thước Tệp 46.08 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 2.0
Cập Nhật Lần Cuối 2015-03-25
Ngày Phát Hành 2015-03-25
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Aviche
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}