Dictionary Tool

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

Cos'è Dictionary Tool?

Dictionary Tool è un'estensione di Chrome sviluppata da https://stlwebsitedevelopment.com, e la sua funzione principale è "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Dictionary Tool

Scarica i file di estensione Dictionary Tool in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
URL Ufficiale https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
Descrizione This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
Dimensione del File 181 KB
Conteggio Installazioni 577
Versione Corrente 2.1
Ultimo Aggiornamento 2023-01-26
Data di Pubblicazione 2017-07-31
Valutazione 2.00/5 Totale 4 Valutazioni
Sviluppatore https://stlwebsitedevelopment.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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:\/\/*\/*"
            ]
        }
    ]
}