WordWeb Dictionary Lookup

One-click lookup with WordWeb (wordweb.info, Windows only)

Was ist WordWeb Dictionary Lookup?

WordWeb Dictionary Lookup ist eine Chrome-Erweiterung, die von https://wordweb.info entwickelt wurde, und ihr Hauptmerkmal ist "One-click lookup with WordWeb (wordweb.info, Windows only)".

Erweiterungsscreenshots

screenshot

WordWeb Dictionary Lookup-Erweiterungs-CRX-Datei herunterladen

Laden Sie WordWeb Dictionary Lookup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Enables one-click dictionary/thesaurus look up:

 * Ctrl+Right Click on a word on any page to look it up in WordWeb

 * Toolbar icon to open WordWeb with selected text, or look up word at the cursor in a edit box

 * Ctrl+Alt+W to open WordWeb with selected text, or active word in edit box

 * If you are editing text, you can use the Replace button in WordWeb to replace the word with a synonym or corrected spelling

Note that WordWeb or WordWeb Pro  8.1 or higher for Windows must be installed (default option).  WordWeb is available separately from http://wordweb.info, free or Pro versions.                    

Grundlegende Informationen zur Erweiterung

Name WordWeb Dictionary Lookup WordWeb Dictionary Lookup
ID ilikenhndcpmliapkmmhoimckaokmihm
Offizielle URL https://chromewebstore.google.com/detail/wordweb-dictionary-lookup/ilikenhndcpmliapkmmhoimckaokmihm
Beschreibung One-click lookup with WordWeb (wordweb.info, Windows only)
Dateigröße 23.55 KB
Installationsanzahl 47,121
Aktuelle Version 0.0.1.6
Letztes Update 2017-05-08
Veröffentlichungsdatum 2017-05-08
Bewertung 4.74/5 Insgesamt 50 Bewertungen
Entwickler https://wordweb.info
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite http://www.wordwebsoftware.com/privacy.html
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "WordWeb Dictionary Lookup",
    "short_name": "WordWeb",
    "version": "0.0.1.6",
    "manifest_version": 2,
    "description": "One-click lookup with WordWeb (wordweb.info, Windows only)",
    "icons": {
        "24": "images\/24.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "author": "WordWeb Software",
    "homepage_url": "http:\/\/wordweb.info\/",
    "browser_action": {
        "default_title": "WordWeb"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "backgroundscript.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentscript.js"
            ],
            "all_frames": true
        }
    ],
    "permissions": [
        "nativeMessaging",
        "activeTab",
        "tabs"
    ]
}