Gmail™ Instant Title Links

Automatically turn URLs in gmail titles clickable links

ما هو Gmail™ Instant Title Links؟

Gmail™ Instant Title Links هو إضافة Chrome تم تطويرها بواسطة Aviche، والميزة الرئيسية لها هي "Automatically turn URLs in gmail titles clickable links".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Gmail™ Instant Title Links

قم بتنزيل ملفات الامتداد Gmail™ Instant Title Links بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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"
            ]
        }
    ]
}