Hover Link
When hovering over short url link or any link it will show the final destination URL.
Τι είναι το Hover Link;
Το Hover Link είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον connerb, και η κύρια λειτουργία του είναι "When hovering over short url link or any link it will show the final destination URL.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Hover Link
Λήψη αρχείων επέκτασης Hover Link σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Hover Link is a simple extension that allows you to view and copy short URL and normal URL links on websites. For the short URL links it will display their destination URL as well. Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| ID | ggbpdjpocpnohglmhmppdkimpoiklegb |
| Επίσημο URL | https://chrome.google.com/webstore/detail/hover-link/ggbpdjpocpnohglmhmppdkimpoiklegb |
| Περιγραφή | When hovering over short url link or any link it will show the final destination URL. |
| Μέγεθος Αρχείου | 60.52 KB |
| Αριθμός Εγκαταστάσεων | 423 |
| Τρέχουσα Έκδοση | 1.0 |
| Τελευταία Ενημέρωση | 2014-10-06 |
| Ημερομηνία Δημοσίευσης | 2014-10-06 |
| Αξιολόγηση | 2.44/5 Συνολικά 9 Αξιολογήσεις |
| Προγραμματιστής | connerb |
| Τύπος Πληρωμής | free |
| Ιστότοπος Επέκτασης | http://www.connerb.com |
| Υποστηριζόμενες Γλώσσες | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Hover Link",
"description": "When hovering over short url link or any link it will show the final destination URL.",
"version": "1.0",
"manifest_version": 2,
"icons": {
"48": "icons\/48x48.png"
},
"background": {
"page": "html\/background.html"
},
"permissions": [
"*:\/\/*\/*",
"storage",
"webRequest",
"webRequestBlocking"
],
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"js\/jquery-2.1.1.min.js",
"js\/script.js"
],
"css": [
"css\/script.css"
],
"all_frames": false,
"run_at": "document_end"
}
],
"options_page": "html\/options.html",
"page_action": {
"default_icon": {
"19": "icons\/19x19.png"
},
"default_title": "Hover Link",
"default_popup": "html\/options.html"
}
} | |