Cambridge Dictionary
Look up selected text in 'Cambridge Dictionary' page.
What is Cambridge Dictionary?
Cambridge Dictionary is a Chrome extension developed by Tan Kan, and its main feature is "Look up selected text in 'Cambridge Dictionary' page.".
Extension Screenshots
Download Cambridge Dictionary Extension CRX File
Download Cambridge Dictionary extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Cambridge Dictionary |
ID | dbiljoifjihhnghopaokjicepkcdfglo |
Official URL | https://chromewebstore.google.com/detail/cambridge-dictionary/dbiljoifjihhnghopaokjicepkcdfglo |
Description | Look up selected text in 'Cambridge Dictionary' page. |
File Size | 48.39 KB |
Installation Count | 4,000 |
Current Version | 1.3 |
Last Updated | 2020-06-11 |
Publish Date | 2020-06-11 |
Rating | 5.00/5 Total 9 Ratings |
Developer | Tan Kan |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |