Dictionary Tool
This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
Co je Dictionary Tool?
Dictionary Tool je rozšíření Chrome vyvinuté https://stlwebsitedevelopment.com, a jeho hlavní funkcí je „This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Dictionary Tool
Stáhněte si soubory rozšíření Dictionary Tool ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Dictionary Tool |
ID | edifcpjfgilelnbmcihdcfhggmjodfmh |
Oficiální URL | https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh |
Popis | This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension |
Velikost souboru | 181 KB |
Počet instalací | 577 |
Aktuální Verze | 2.1 |
Poslední Aktualizace | 2023-01-26 |
Datum Vydání | 2017-07-31 |
Hodnocení | 2.00/5 Celkem 4 Hodnocení |
Vývojář | https://stlwebsitedevelopment.com |
[email protected] | |
Typ Platby | free |
Podporované Jazyky | 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:\/\/*\/*" ] } ] } |