Easy Definition (Highlight and Ctrl+Space)
Easy Definition (Highlight and Ctrl+Space)
Τι είναι το Easy Definition (Highlight and Ctrl+Space);
Το Easy Definition (Highlight and Ctrl+Space) είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Prateek Jha, και η κύρια λειτουργία του είναι "Easy Definition (Highlight and Ctrl+Space)".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Easy Definition (Highlight and Ctrl+Space)
Λήψη αρχείων επέκτασης Easy Definition (Highlight and Ctrl+Space) σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Easily get the definition of any word by pressing Ctrl + Space. How to use: On any web page highlight the word using mouse pointer and Press CTRL+Space No need to open new tabs and loose sight of your working page even for a second. It gets you the simplest ever meaning of the selected word from web. To change the shortcut command go to chrome://extensions/shortcuts. Find Easy Definition and choose any set of available commands. For any complains and queries reach us at [email protected].
Βασικές Πληροφορίες Επέκτασης
Όνομα | Easy Definition (Highlight and Ctrl+Space) |
ID | oiphjheegkcofbmfcjjjgpeeieddfnml |
Επίσημο URL | https://chromewebstore.google.com/detail/easy-definition-highlight/oiphjheegkcofbmfcjjjgpeeieddfnml |
Περιγραφή | Easy Definition (Highlight and Ctrl+Space) |
Μέγεθος Αρχείου | 17.79 KB |
Αριθμός Εγκαταστάσεων | 21 |
Τρέχουσα Έκδοση | 1.0.0 |
Τελευταία Ενημέρωση | 2020-04-13 |
Ημερομηνία Δημοσίευσης | 2020-04-10 |
Αξιολόγηση | 5.00/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | Prateek Jha |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Easy Definition (Highlight and Ctrl+Space)", "version": "1.0.0", "description": "Easy Definition (Highlight and Ctrl+Space)", "icons": { "128": "finder_128.png" }, "browser_action": { "default_icon": "finder_128_popup.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ] } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Space", "mac": "MacCtrl+Space" } } } } |