Easy Definition (Highlight and Ctrl+Space)

Easy Definition (Highlight and Ctrl+Space)

Co to jest Easy Definition (Highlight and Ctrl+Space)?

Easy Definition (Highlight and Ctrl+Space) to rozszerzenie Chrome opracowane przez Prateek Jha, a jego główną funkcją jest „Easy Definition (Highlight and Ctrl+Space)”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Easy Definition (Highlight and Ctrl+Space)

Pobierz pliki rozszerzeń Easy Definition (Highlight and Ctrl+Space) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Easy Definition (Highlight and Ctrl+Space) Easy Definition (Highlight and Ctrl+Space)
ID oiphjheegkcofbmfcjjjgpeeieddfnml
Oficjalny URL https://chromewebstore.google.com/detail/easy-definition-highlight/oiphjheegkcofbmfcjjjgpeeieddfnml
Opis Easy Definition (Highlight and Ctrl+Space)
Rozmiar pliku 17.79 KB
Liczba instalacji 21
Aktualna Wersja 1.0.0
Ostatnia Aktualizacja 2020-04-13
Data Publikacji 2020-04-10
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Prateek Jha
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            }
        }
    }
}