Dictionary Tool

This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension

Co to jest Dictionary Tool?

Dictionary Tool to rozszerzenie Chrome opracowane przez https://stlwebsitedevelopment.com, a jego główną funkcją jest „This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Dictionary Tool

Pobierz pliki rozszerzeń Dictionary Tool 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

                        A chrome extension that allows you to highlight a word on the page, click on my extension and get a definition of the word you have highlighted. The extension is connected to a dictionary database and uses a special algorithm to retrieve the highlighted text, query the database and retrieve the definition for you in an elegant, simple, and well designed chrome extension.                    

Podstawowe informacje o rozszerzeniu

Nazwa Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
Oficjalny URL https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
Opis This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
Rozmiar pliku 181 KB
Liczba instalacji 577
Aktualna Wersja 2.1
Ostatnia Aktualizacja 2023-01-26
Data Publikacji 2017-07-31
Ocena 2.00/5 Łącznie 4 Oceny
Deweloper https://stlwebsitedevelopment.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary Tool",
    "description": "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension",
    "version": "2.1",
    "author": "Leon Krugliakov",
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/main.js",
                "scripts\/jquery.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}