Instant Dictionary
View definition in both English and Chinese as you browse the web.
Τι είναι το Instant Dictionary;
Το Instant Dictionary είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Peter Pi, και η κύρια λειτουργία του είναι "View definition in both English and Chinese as you browse the web.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Instant Dictionary
Λήψη αρχείων επέκτασης Instant Dictionary σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
IMPORTANT: - The chrome extension will not work in tabs that were open prior to installation. After installation, either reload your open tabs or restart Chrome. Instant Dictionary helps to make the translation become more convenient. Simply highlight the word you don't understand and see the definition in English and Chinese without going back and forth on tabs.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | hjpcapcphfbomgjkghdiiogelgikcmpa |
Επίσημο URL | https://chrome.google.com/webstore/detail/instant-dictionary/hjpcapcphfbomgjkghdiiogelgikcmpa |
Περιγραφή | View definition in both English and Chinese as you browse the web. |
Μέγεθος Αρχείου | 696 KB |
Αριθμός Εγκαταστάσεων | 121 |
Τρέχουσα Έκδοση | 1.0.6 |
Τελευταία Ενημέρωση | 2022-01-08 |
Ημερομηνία Δημοσίευσης | 2020-04-18 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Peter Pi |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Instant Dictionary", "version": "1.0.6", "description": "View definition in both English and Chinese as you browse the web.", "author": "Peter Pi", "icons": { "128": "icon_128.png" }, "browser_action": { "default_icon": "icon.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [ "Styles.css" ], "js": [ "content.js", "jquery-3.4.1.min.js" ] } ], "permissions": [ "activeTab", "storage" ] } |