Gmail™ Instant Title Links
Automatically turn URLs in gmail titles clickable links
Gmail™ Instant Title Links क्या है?
Gmail™ Instant Title Links Aviche द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Automatically turn URLs in gmail titles clickable links"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Gmail™ Instant Title Links एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
एक्सटेंशन की मूल जानकारी
नाम | |
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" ] } ] } |