Dictionary Tool

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

What is Dictionary Tool?

Dictionary Tool is a Chrome extension developed by https://stlwebsitedevelopment.com, and its main feature is "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".

Extension Screenshots

screenshot

Download Dictionary Tool Extension CRX File

Download Dictionary Tool extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
Official URL https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
Description This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
File Size 181 KB
Installation Count 577
Current Version 2.1
Last Updated 2023-01-26
Publish Date 2017-07-31
Rating 2.00/5 Total 4 Ratings
Developer https://stlwebsitedevelopment.com
Email [email protected]
Payment Type free
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}