Dictionary Tool
This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
Τι είναι το Dictionary Tool;
Το Dictionary Tool είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://stlwebsitedevelopment.com, και η κύρια λειτουργία του είναι "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Dictionary Tool
Λήψη αρχείων επέκτασης Dictionary Tool σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Dictionary Tool |
ID | edifcpjfgilelnbmcihdcfhggmjodfmh |
Επίσημο URL | https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh |
Περιγραφή | This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension |
Μέγεθος Αρχείου | 181 KB |
Αριθμός Εγκαταστάσεων | 577 |
Τρέχουσα Έκδοση | 2.1 |
Τελευταία Ενημέρωση | 2023-01-26 |
Ημερομηνία Δημοσίευσης | 2017-07-31 |
Αξιολόγηση | 2.00/5 Συνολικά 4 Αξιολογήσεις |
Προγραμματιστής | https://stlwebsitedevelopment.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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:\/\/*\/*" ] } ] } |