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 |
Eメール | [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" } } |