Easy Definition (Highlight and Ctrl+Space)

Easy Definition (Highlight and Ctrl+Space)

Was ist Easy Definition (Highlight and Ctrl+Space)?

Easy Definition (Highlight and Ctrl+Space) ist eine Chrome-Erweiterung, die von Prateek Jha entwickelt wurde, und ihr Hauptmerkmal ist "Easy Definition (Highlight and Ctrl+Space)".

Erweiterungsscreenshots

screenshot
screenshot

Easy Definition (Highlight and Ctrl+Space)-Erweiterungs-CRX-Datei herunterladen

Laden Sie Easy Definition (Highlight and Ctrl+Space)-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

                        Easily get the definition of any word by pressing Ctrl + Space.

How to use:
On any web page highlight the word using mouse pointer and Press CTRL+Space

No need to open new tabs and loose sight of your working page even for a second. It gets you the simplest ever meaning of the selected word from web.

To change the shortcut command go to chrome://extensions/shortcuts. Find Easy Definition and choose any set of available commands.

For any complains and queries reach us at [email protected].                    

Grundlegende Informationen zur Erweiterung

Name Easy Definition (Highlight and Ctrl+Space) Easy Definition (Highlight and Ctrl+Space)
ID oiphjheegkcofbmfcjjjgpeeieddfnml
Offizielle URL https://chromewebstore.google.com/detail/easy-definition-highlight/oiphjheegkcofbmfcjjjgpeeieddfnml
Beschreibung Easy Definition (Highlight and Ctrl+Space)
Dateigröße 17.79 KB
Installationsanzahl 21
Aktuelle Version 1.0.0
Letztes Update 2020-04-13
Veröffentlichungsdatum 2020-04-10
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler Prateek Jha
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Definition (Highlight and Ctrl+Space)",
    "version": "1.0.0",
    "description": "Easy Definition (Highlight and Ctrl+Space)",
    "icons": {
        "128": "finder_128.png"
    },
    "browser_action": {
        "default_icon": "finder_128_popup.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Space",
                "mac": "MacCtrl+Space"
            }
        }
    }
}