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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gmail™ Instant Title Links
Λήψη αρχείων επέκτασης 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" ] } ] } |