MOJiDict Helper
Show popup of Japanese vocabulary when double clicking on any text in webpage
What is MOJiDict Helper?
MOJiDict Helper is a Chrome extension developed by Yukai Huang, and its main feature is "Show popup of Japanese vocabulary when double clicking on any text in webpage".
Extension Screenshots
Download MOJiDict Helper Extension CRX File
Download MOJiDict Helper extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
只要輕點兩下網頁中的任意文字,MOJiDict Helper 就會跳出小視窗搜尋單字,讓你快速記憶查詢日文單字! 背後利用了「MOJi辞書」mojidict.com 的 API
Extension Basic Information
Name | MOJiDict Helper |
ID | eknkjedaohafedihakaobhjfaabelkem |
Official URL | https://chromewebstore.google.com/detail/mojidict-helper/eknkjedaohafedihakaobhjfaabelkem |
Description | Show popup of Japanese vocabulary when double clicking on any text in webpage |
File Size | 37.34 KB |
Installation Count | 225 |
Current Version | 1.1.0 |
Last Updated | 2020-03-25 |
Publish Date | 2020-03-22 |
Rating | 5.00/5 Total 6 Ratings |
Developer | Yukai Huang |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Yukaii/mojidict-helper |
Help Page URL | https://github.com/Yukaii/mojidict-helper/issues |
Supported Languages | 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" ] } |