Cambridge Dictionary
Look up selected text in 'Cambridge Dictionary' page.
Qu'est-ce que Cambridge Dictionary ?
Cambridge Dictionary est une extension Chrome développée par Tan Kan, et sa fonction principale est "Look up selected text in 'Cambridge Dictionary' page.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Cambridge Dictionary
Téléchargez les fichiers d'extension Cambridge Dictionary au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Look up selected text in https://dictionary.cambridge.org, using predefined dictionary. While in Cambridge Dictionary page, automatically focus on search box when typing. When popup tab is closed, previous active tab will be active again. This is very helpful if you are in middle of handful of tabs. What's new: Arrow keys (Up - Down) can be used to select word in suggestion pop-up.
Informations de Base sur l'Extension
Nom | Cambridge Dictionary |
ID | dbiljoifjihhnghopaokjicepkcdfglo |
URL Officiel | https://chromewebstore.google.com/detail/cambridge-dictionary/dbiljoifjihhnghopaokjicepkcdfglo |
Description | Look up selected text in 'Cambridge Dictionary' page. |
Taille du Fichier | 48.39 KB |
Nombre d'Installations | 4,000 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2020-06-11 |
Date de Publication | 2020-06-11 |
Évaluation | 5.00/5 Total 9 Évaluations |
Développeur | Tan Kan |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Cambridge Dictionary", "version": "1.3", "description": "Look up selected text in 'Cambridge Dictionary' page.", "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/dictionary.cambridge.org\/*" ], "js": [ "content_scripts.js" ] } ], "permissions": [ "contextMenus", "storage" ], "browser_action": { "default_icon": "icons\/cambridge-icon-128.png", "default_title": "Cambridge Dictionary", "default_popup": "popup.html" }, "icons": { "128": "icons\/cambridge-icon-128.png" } } |