Dictionary Tool
This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
Was ist Dictionary Tool?
Dictionary Tool ist eine Chrome-Erweiterung, die von https://stlwebsitedevelopment.com entwickelt wurde, und ihr Hauptmerkmal ist "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".
Erweiterungsscreenshots
Dictionary Tool-Erweiterungs-CRX-Datei herunterladen
Laden Sie Dictionary Tool-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Dictionary Tool |
ID | edifcpjfgilelnbmcihdcfhggmjodfmh |
Offizielle URL | https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh |
Beschreibung | This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension |
Dateigröße | 181 KB |
Installationsanzahl | 577 |
Aktuelle Version | 2.1 |
Letztes Update | 2023-01-26 |
Veröffentlichungsdatum | 2017-07-31 |
Bewertung | 2.00/5 Insgesamt 4 Bewertungen |
Entwickler | https://stlwebsitedevelopment.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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:\/\/*\/*" ] } ] } |