LinkTips

Show URLs in all link title tooltips and allow custom title tooltip appearance.

Τι είναι το LinkTips;

Το LinkTips είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Nate Ribose, και η κύρια λειτουργία του είναι "Show URLs in all link title tooltips and allow custom title tooltip appearance.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης LinkTips

Λήψη αρχείων επέκτασης LinkTips σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Show URLs in all link title tooltips and allow custom title tooltip appearance.

Rather than moving your focus away from the mouse to see the destination of a URL, this will show the URL in a tooltip near the mouse when you hover over a link.

You can either use your system tooltip (default), or specify a custom tooltip (with completely customizable styles using CSS). You may even have all tooltips appear with the custom tooltip style, too!

This is a Free and Open Source extension. Look at the project on GitHub: https://github.com/nmbook/linktips-chrome                    

Βασικές Πληροφορίες Επέκτασης

Όνομα LinkTips LinkTips
ID eihlofapoahdelmmdphpobogokfmdmbl
Επίσημο URL https://chromewebstore.google.com/detail/linktips/eihlofapoahdelmmdphpobogokfmdmbl
Περιγραφή Show URLs in all link title tooltips and allow custom title tooltip appearance.
Μέγεθος Αρχείου 50.59 KB
Αριθμός Εγκαταστάσεων 220
Τρέχουσα Έκδοση 0.1.1
Τελευταία Ενημέρωση 2014-01-20
Ημερομηνία Δημοσίευσης 2014-01-19
Αξιολόγηση 5.00/5 Συνολικά 2 Αξιολογήσεις
Προγραμματιστής Nate Ribose
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "LinkTips",
    "author": "Nate Book ",
    "version": "0.1.1",
    "description": "Show URLs in all link title tooltips and allow custom title tooltip appearance.",
    "icons": {
        "16": "linktips16.png",
        "48": "linktips48.png",
        "128": "linktips128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "linktips.css"
            ],
            "js": [
                "jquery.min.js",
                "linktips.js"
            ]
        }
    ],
    "options_page": "options.html",
    "content_security_policy": "default-src 'none'; style-src 'unsafe-inline'; script-src 'self'",
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}