Dictionary Tool

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

Vad är Dictionary Tool?

Dictionary Tool är en Chrome-tillägg utvecklad av https://stlwebsitedevelopment.com, och dess huvudfunktion är "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".

Tilläggsskärmbilder

screenshot

Ladda ner Dictionary Tool-förlängningens CRX-fil

Ladda ner Dictionary Tool-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
Officiell webbadress https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
Beskrivning This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
Filstorlek 181 KB
Antal Installationer 577
Aktuell Version 2.1
Senast Uppdaterad 2023-01-26
Publiceringsdatum 2017-07-31
Betyg 2.00/5 Totalt 4 Betyg
Utvecklare https://stlwebsitedevelopment.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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:\/\/*\/*"
            ]
        }
    ]
}