Dictionary Lookup

Look up any word in an inline frame with a simple click and without leaving the page.

Τι είναι το Dictionary Lookup;

Το Dictionary Lookup είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Max Shawabkeh, και η κύρια λειτουργία του είναι "Look up any word in an inline frame with a simple click and without leaving the page.".

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

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

                        This extension that allows you to quickly look up definitions of words and phrases in a clean inline box. The definitions come from Wiktionary, but have been preprocessed to reduce formatting and provide faster lookup. Hold a modifier key (Alt on Windows, Command on Mac, Ctrl on Linux) and double-click or select any word to look it up - an inline box will open to the dictionary entry of that word, usually including examples, audio pronunciation and synonyms.

You can also lookup manually-entered queries using a shortcut which displays a small query form.

NOTES:
1. After installing, pages already open will not work for looking up - just refresh them and it'll be solved.
2. The Chrome Extensions Gallery pages don't allow lookup (or any on-page extensions) for security reasons. 
3. This extension does not add a toolbar icon.

Icon:
  http://www.iconarchive.com/show/buuf-icons-by-mattahan/Dictionary-icon.html
  Created by Paul Davey, used as per the Creative Commons BY-NC-SA license.

If you want to select different dictionaries, try Inline Search & Lookup:
  https://chrome.google.com/extensions/detail/pebegifiepdlicjchldkdlmbohhhpcfi                    

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

Όνομα Dictionary Lookup Dictionary Lookup
ID ipdjaafajlfiopcppipdinmcjbcpofhd
Επίσημο URL https://chromewebstore.google.com/detail/dictionary-lookup/ipdjaafajlfiopcppipdinmcjbcpofhd
Περιγραφή Look up any word in an inline frame with a simple click and without leaving the page.
Μέγεθος Αρχείου 45.79 KB
Αριθμός Εγκαταστάσεων 23,155
Τρέχουσα Έκδοση 4.3.5
Τελευταία Ενημέρωση 2021-05-11
Ημερομηνία Δημοσίευσης 2015-03-04
Αξιολόγηση 4.15/5 Συνολικά 379 Αξιολογήσεις
Προγραμματιστής Max Shawabkeh
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/max99x/dict-lookup-chrome-ext
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/max99x/dict-lookup-chrome-ext/issues
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dictionary Lookup",
    "version": "4.3.5",
    "manifest_version": 2,
    "description": "Look up any word in an inline frame with a simple click and without leaving the page.",
    "icons": {
        "128": "img\/icon.png"
    },
    "options_page": "options.htm",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "frame.css"
            ],
            "js": [
                "lookup.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/dictionary-lookup.org\/",
        "http:\/\/commons.wikimedia.org\/"
    ],
    "web_accessible_resources": [
        "img\/back.png",
        "img\/gradient_down.png",
        "img\/handle.png",
        "img\/loader.gif",
        "img\/external.png",
        "img\/gradient_up.png",
        "img\/icon.png",
        "img\/speaker.png"
    ]
}