Wikipedia Quick Hints

Display quick description of the terms in the Wikipedia article.

Τι είναι το Wikipedia Quick Hints;

Το Wikipedia Quick Hints είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://dfsq.info, και η κύρια λειτουργία του είναι "Display quick description of the terms in the Wikipedia article.".

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

screenshot
screenshot
screenshot

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

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

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

                        A simple extension that makes reading Wikipedia articles more convenient. 
When reading how often do you have to open an additional cross-article just to glimpse quickly at the meaning of a term you do not know? 
Now with Wikipedia Quick Hints getting definitions of unknown terms has become as simple as just hovering the cursor over a respective link. The definition pops up automatically. Images zooming is another useful feature of the extension.
See screenshots for example.

Please rate if you find it useful. Comment if you have questions, find bugs or have ideas for improvements.

Changes history:

In version 2.2.0
 - Adjusted to new Wikipedia article structure. Bug fixes.

In version 2.1.7
 - Fixed image zooming issue.

In version 2.1.6
 - HTTPS pages support.
 - new extension versioning.

In version 2.15
 - new setting - hide question marks.
 - minor improvement.

In version 2.1
 - new feature - image thumbnails inside definition popup.
 - quick little bug fix.

In version 2.0
 - new feature - hints within another hint popup;
 - settings page simplified;
 - several bugs fixed.

In version 1.46
 - fixed number of bugs.

In version 1.45:
 - added new option to enable/disable images zooming.

In version 1.42:
 - fixed several minor bugs.

In version 1.4:
 - pressing Esc now closes the image preview popup;
 - get definitions without using a hotkey, just hover the link;
 - notifications about new features;

In version 1.3:
 - restructuring and code improvements;
 - icons change;
 - some bugs with the hint position;

In version 1.2:
 - fixed several bugs;
 - added quick pictures zoom option.


*** ATTENTION ***
Due to the changes Wikepedia developers made to the structure of the articles WikipediaQuickHints had a lot of problems with getting correct definition and hence in most cases poped up useless "Can not get definition for this term ..." message. Please report the problems so that I could fix problematic places.

Thank you for using it! :)                    

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

Όνομα Wikipedia Quick Hints Wikipedia Quick Hints
ID ldnhgfghebflgcndlbppfanbchpgmkna
Επίσημο URL https://chromewebstore.google.com/detail/wikipedia-quick-hints/ldnhgfghebflgcndlbppfanbchpgmkna
Περιγραφή Display quick description of the terms in the Wikipedia article.
Μέγεθος Αρχείου 64.24 KB
Αριθμός Εγκαταστάσεων 6,168
Τρέχουσα Έκδοση 2.20
Τελευταία Ενημέρωση 2017-07-08
Ημερομηνία Δημοσίευσης 2017-07-08
Αξιολόγηση 4.62/5 Συνολικά 115 Αξιολογήσεις
Προγραμματιστής https://dfsq.info
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης http://dfsq.info/projects/wikipedia-quick-hints
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Wikipedia Quick Hints",
    "description": "Display quick description of the terms in the Wikipedia article.",
    "version": "2.20",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "wikipediaQuickHints.js"
            ],
            "css": [
                "hint.css"
            ],
            "matches": [
                "http:\/\/*.wikipedia.org\/wiki\/*",
                "https:\/\/*.wikipedia.org\/wiki\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "img\/128.png",
        "16": "img\/16.png",
        "48": "img\/48.png"
    },
    "page_action": {
        "default_icon": "img\/16.png",
        "default_popup": "popup.html",
        "default_title": "Quick hints are available"
    },
    "permissions": [
        "tabs",
        "http:\/\/commons.wikimedia.org\/",
        "https:\/\/commons.wikimedia.org\/",
        "http:\/\/upload.wikimedia.org\/",
        "https:\/\/upload.wikimedia.org\/"
    ],
    "web_accessible_resources": [
        "img\/star.png",
        "img\/star_inactive.png",
        "img\/read.png",
        "img\/zoom.gif"
    ]
}