Cambridge Dictionary
Look up selected text in 'Cambridge Dictionary' page.
Wat is Cambridge Dictionary?
Cambridge Dictionary is een Chrome-extensie ontwikkeld door Tan Kan, en de belangrijkste functie is "Look up selected text in 'Cambridge Dictionary' page.".
Extensie Screenshots
Download het CRX-bestand van de extensie Cambridge Dictionary
Download Cambridge Dictionary-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Cambridge Dictionary |
ID | dbiljoifjihhnghopaokjicepkcdfglo |
Officiële URL | https://chromewebstore.google.com/detail/cambridge-dictionary/dbiljoifjihhnghopaokjicepkcdfglo |
Beschrijving | Look up selected text in 'Cambridge Dictionary' page. |
Bestandsgrootte | 48.39 KB |
Aantal Installaties | 4,000 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2020-06-11 |
Publicatiedatum | 2020-06-11 |
Beoordeling | 5.00/5 Totaal 9 Beoordelingen |
Ontwikkelaar | Tan Kan |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |