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"입니다.

확장 프로그램 스크린샷

screenshot

Gmail™ Instant Title Links 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Gmail™ Instant Title Links Gmail™ Instant Title Links
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"
            ]
        }
    ]
}