Adict - Instant Dictionary Lookup
This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French
Τι είναι το Adict - Instant Dictionary Lookup;
Το Adict - Instant Dictionary Lookup είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον relte, και η κύρια λειτουργία του είναι "This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Adict - Instant Dictionary Lookup
Λήψη αρχείων επέκτασης Adict - Instant Dictionary Lookup σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
This extension allows you to easily look up a phrase in English, Polish, German, Spanish or French holding ALT and double clicking or with a trigger button. You can choose one of the four available dictionaries: dictionary.com (EN), merriam-webster.com (EN), diki.pl (EN/PL) and and bab.la (EN, PL, DE, ES, FR). IMPORTANT: The extension will not work in tabs that were open prior to installation, such tabs must be refreshed. Besides, note that all extensions are disabled on Chrome Web Store pages (including this page).
Βασικές Πληροφορίες Επέκτασης
Όνομα | Adict - Instant Dictionary Lookup |
ID | npehaobgogknjhoglakcpbfbhfdgennf |
Επίσημο URL | https://chromewebstore.google.com/detail/adict-instant-dictionary/npehaobgogknjhoglakcpbfbhfdgennf |
Περιγραφή | This extension allows you to easily search for translations of phrases in English, Polish, German, Spanish and French |
Μέγεθος Αρχείου | 48.35 KB |
Αριθμός Εγκαταστάσεων | 288 |
Τρέχουσα Έκδοση | 0.4.0 |
Τελευταία Ενημέρωση | 2019-07-02 |
Ημερομηνία Δημοσίευσης | 2019-07-02 |
Αξιολόγηση | 3.67/5 Συνολικά 3 Αξιολογήσεις |
Προγραμματιστής | relte |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en,pl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "default_locale": "en", "version": "0.4.0", "applications": { "gecko": { "id": "[email protected]" } }, "icons": { "16": "icons\/main16.png", "32": "icons\/main32.png", "48": "icons\/main48.png", "96": "icons\/main96.png", "128": "icons\/main128.png" }, "background": { "scripts": [ "lib\/browser-polyfill.js", "storage.js", "background.js" ] }, "content_scripts": [ { "all_frames": true, "matches": [ "*:\/\/*\/*" ], "js": [ "lib\/browser-polyfill.js", "storage.js", "popup\/popup.js" ], "css": [ "popup\/popup.css" ] }, { "all_frames": true, "matches": [ "https:\/\/www.dictionary.com\/*", "https:\/\/www.merriam-webster.com\/*", "https:\/\/www.diki.pl\/*", "https:\/\/*.bab.la\/*" ], "js": [ "dictionary.js" ] }, { "all_frames": true, "matches": [ "https:\/\/www.dictionary.com\/*addon=true*" ], "css": [ "popup\/styles\/dictionary_com.css" ] }, { "all_frames": true, "matches": [ "https:\/\/www.merriam-webster.com\/*addon=true*" ], "css": [ "popup\/styles\/merriam_webster.css" ] }, { "all_frames": true, "matches": [ "https:\/\/www.diki.pl\/*addon=true*" ], "css": [ "popup\/styles\/diki.css" ] }, { "all_frames": true, "matches": [ "https:\/\/*.bab.la\/*addon=true*" ], "css": [ "popup\/styles\/bab_la.css" ] } ], "permissions": [ "storage", "webRequest", "webRequestBlocking", " |