Cambridge Dictionary
Look up selected text in 'Cambridge Dictionary' page.
什么是Cambridge Dictionary?
Cambridge Dictionary是由Tan Kan开发的Chrome扩展程序,该扩展的主要功能是“Look up selected text in 'Cambridge Dictionary' page.”。
扩展截图
下载Cambridge Dictionary扩展crx文件
下载Cambridge Dictionary扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Cambridge Dictionary |
ID | dbiljoifjihhnghopaokjicepkcdfglo |
官方URL | https://chromewebstore.google.com/detail/cambridge-dictionary/dbiljoifjihhnghopaokjicepkcdfglo |
简介 | Look up selected text in 'Cambridge Dictionary' page. |
文件大小 | 48.39 KB |
安装次数 | 4,000 |
当前版本 | 1.3 |
更新时间 | 2020-06-11 |
上架时间 | 2020-06-11 |
评分 | 5.00/5 共9次评分 |
开发者 | Tan Kan |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |