Link Revealer
Show URLs when you hover over links into a webpage.
Τι είναι το Link Revealer;
Το Link Revealer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Julian Xhokaxhiu, και η κύρια λειτουργία του είναι "Show URLs when you hover over links into a webpage.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Link Revealer
Λήψη αρχείων επέκτασης Link Revealer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension will show up the url of the link you're going to click. You are probably asking yourself why this extenions was made for...well this, believe it or not, were made because modern browsers like Google Chrome are going to hide at the most the status bar of the url you're going to click. So i hope with this that you're going to know more where are you going to surf to. But this extensions will not end up here, we're going (yes, this is not only my idea) to add some more nice features, so don't forget to come visit this page. Thanks for trying, as always comments or suggestions are appreciated :) CHANGELOG: - 0.3: Add support for target=_blank links. Updated libs and more. - 0.2.2: the tooltip was not shown correctly on mouseover. - 0.2.1: updated to work with latest versions of Chrome - 0.2.x: more to come :) - 0.2: As promised here's the first update with some new nice features like: - Now you can set the tooltip to be viewed also as a statusbar (with configurable position) or keep it as a simple tooltip - Added a timeout to the tooltip to be shown - First SEO Tool: Domain Highlighter (to understand better if you're are going to surf into the same website or not). - 0.1: First initial version. Links are shown up on mouseover. SOURCE-CODE: https://github.com/julianxhokaxhiu/chrome-link-revealer THANKS TO: - Simone Righini, http://www.goatseo.com, The inventor of the idea - Luca Conti, http://www.patonza.net, Support for some next features that will come
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | nphhadgebjlmcfleikmiedhohdfbfoin |
Επίσημο URL | https://chromewebstore.google.com/detail/link-revealer/nphhadgebjlmcfleikmiedhohdfbfoin |
Περιγραφή | Show URLs when you hover over links into a webpage. |
Μέγεθος Αρχείου | 440 KB |
Αριθμός Εγκαταστάσεων | 3,836 |
Τρέχουσα Έκδοση | 0.3 |
Τελευταία Ενημέρωση | 2014-06-14 |
Ημερομηνία Δημοσίευσης | 2014-06-14 |
Αξιολόγηση | 4.06/5 Συνολικά 53 Αξιολογήσεις |
Προγραμματιστής | Julian Xhokaxhiu |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | http://www.julianxhokaxhiu.com |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Link Revealer", "version": "0.3", "description": "Show URLs when you hover over links into a webpage.", "background": { "scripts": [ "js\/jquery-2.1.1.min.js", "js\/default.js", "background.js" ] }, "options_page": "options.html", "icons": { "16": "img\/icon_16.png", "128": "img\/icon_128.png" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "css\/jquery.qtip.min.css", "css\/font-awesome.min.css" ], "js": [ "js\/jquery-2.1.1.min.js", "js\/jquery.qtip.min.js", "js\/jquery.urldecoder.min.js", "js\/script.js" ], "run_at": "document_idle" } ], "web_accessible_resources": [ "fonts\/*" ] } |