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ファイルをダウンロード
MOJiDict Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
只要輕點兩下網頁中的任意文字,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 |
Eメール | [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" ] } |