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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |