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 |
官方網址 | 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" } } |