Easy Definition (Highlight and Ctrl+Space)

Easy Definition (Highlight and Ctrl+Space)

Co je Easy Definition (Highlight and Ctrl+Space)?

Easy Definition (Highlight and Ctrl+Space) je rozšíření Chrome vyvinuté Prateek Jha, a jeho hlavní funkcí je „Easy Definition (Highlight and Ctrl+Space)“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Easy Definition (Highlight and Ctrl+Space)

Stáhněte si soubory rozšíření Easy Definition (Highlight and Ctrl+Space) ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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].                    

Základní Informace o Rozšíření

Název Easy Definition (Highlight and Ctrl+Space) Easy Definition (Highlight and Ctrl+Space)
ID oiphjheegkcofbmfcjjjgpeeieddfnml
Oficiální URL https://chromewebstore.google.com/detail/easy-definition-highlight/oiphjheegkcofbmfcjjjgpeeieddfnml
Popis Easy Definition (Highlight and Ctrl+Space)
Velikost souboru 17.79 KB
Počet instalací 21
Aktuální Verze 1.0.0
Poslední Aktualizace 2020-04-13
Datum Vydání 2020-04-10
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář Prateek Jha
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            }
        }
    }
}