WordComplex (English Dictionary)

Add extra meaning to your web browsing. Look up for definitions while you are on web.

Was ist WordComplex (English Dictionary)?

WordComplex (English Dictionary) ist eine Chrome-Erweiterung, die von Rajdeep Chauhan entwickelt wurde, und ihr Hauptmerkmal ist "Add extra meaning to your web browsing. Look up for definitions while you are on web.".

Erweiterungsscreenshots

screenshot
screenshot

WordComplex (English Dictionary)-Erweiterungs-CRX-Datei herunterladen

Laden Sie WordComplex (English Dictionary)-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

                        Double click on any word to look up its definition while you are browsing. Look up for definitions in WordComplex browser action and open desktop dictionary by clicking wordcomplex icon.
You can go forward and backward in your currently searched words.
Save the words to look up in future.                    

Grundlegende Informationen zur Erweiterung

Name WordComplex (English Dictionary) WordComplex (English Dictionary)
ID abiafidebmalgeploojmmpaplaglhhaf
Offizielle URL https://chrome.google.com/webstore/detail/wordcomplex-english-dicti/abiafidebmalgeploojmmpaplaglhhaf
Beschreibung Add extra meaning to your web browsing. Look up for definitions while you are on web.
Dateigröße 73.07 KB
Installationsanzahl 234
Aktuelle Version 2.1
Letztes Update 2019-05-19
Veröffentlichungsdatum 2019-05-19
Bewertung 4.00/5 Insgesamt 4 Bewertungen
Entwickler Rajdeep Chauhan
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "WordComplex (English Dictionary)",
    "description": "Add extra meaning to your web browsing. Look up for definitions while you are on web.",
    "version": "2.1",
    "short_name": "WC",
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "popup.html",
        "default_title": "WordComplex"
    },
    "icons": {
        "16": "icon16.png",
        "19": "icon19.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "tip.css"
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "web_accessible_resources": [
        "speaker.jpg"
    ],
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "tts",
        "storage"
    ]
}