MOJiDict Helper
Show popup of Japanese vocabulary when double clicking on any text in webpage
MOJiDict Helper란 무엇입니까?
MOJiDict Helper은(는) Yukai Huang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Show popup of Japanese vocabulary when double clicking on any text in webpage"입니다.
확장 프로그램 스크린샷
MOJiDict Helper 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
只要輕點兩下網頁中的任意文字,MOJiDict Helper 就會跳出小視窗搜尋單字,讓你快速記憶查詢日文單字! 背後利用了「MOJi辞書」mojidict.com 的 API
확장 프로그램 기본 정보
이름 | MOJiDict Helper |
ID | eknkjedaohafedihakaobhjfaabelkem |
공식 URL | https://chromewebstore.google.com/detail/mojidict-helper/eknkjedaohafedihakaobhjfaabelkem |
설명 | Show popup of Japanese vocabulary when double clicking on any text in webpage |
파일 크기 | 37.34 KB |
설치 횟수 | 225 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2020-03-25 |
출시 날짜 | 2020-03-22 |
평점 | 5.00/5 총 6 개의 평점 |
개발자 | Yukai Huang |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/Yukaii/mojidict-helper |
도움말 페이지 URL | https://github.com/Yukaii/mojidict-helper/issues |
지원되는 언어 | zh-TW |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MOJiDict Helper", "description": "Show popup of Japanese vocabulary when double clicking on any text in webpage", "version": "1.1.0", "incognito": "split", "manifest_version": 2, "permissions": [ "activeTab", "contextMenus" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "https:\/\/*.mojidict.com\/*" ], "css": [ "style.css" ], "js": [ "main.js" ] } ], "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "web_accessible_resources": [ "images\/loading.gif" ] } |