Cambridge Dictionary
Look up selected text in 'Cambridge Dictionary' page.
Cos'è Cambridge Dictionary?
Cambridge Dictionary è un'estensione di Chrome sviluppata da Tan Kan, e la sua funzione principale è "Look up selected text in 'Cambridge Dictionary' page.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Cambridge Dictionary
Scarica i file di estensione Cambridge Dictionary in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Cambridge Dictionary |
ID | dbiljoifjihhnghopaokjicepkcdfglo |
URL Ufficiale | https://chromewebstore.google.com/detail/cambridge-dictionary/dbiljoifjihhnghopaokjicepkcdfglo |
Descrizione | Look up selected text in 'Cambridge Dictionary' page. |
Dimensione del File | 48.39 KB |
Conteggio Installazioni | 4,000 |
Versione Corrente | 1.3 |
Ultimo Aggiornamento | 2020-06-11 |
Data di Pubblicazione | 2020-06-11 |
Valutazione | 5.00/5 Totale 9 Valutazioni |
Sviluppatore | Tan Kan |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } |