MOJiDict Helper
Show popup of Japanese vocabulary when double clicking on any text in webpage
O que é MOJiDict Helper?
MOJiDict Helper é uma extensão do Chrome desenvolvida por Yukai Huang, e sua principal característica é "Show popup of Japanese vocabulary when double clicking on any text in webpage".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão MOJiDict Helper
Baixe arquivos de extensão MOJiDict Helper no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
只要輕點兩下網頁中的任意文字,MOJiDict Helper 就會跳出小視窗搜尋單字,讓你快速記憶查詢日文單字! 背後利用了「MOJi辞書」mojidict.com 的 API
Informações Básicas da Extensão
Nome | MOJiDict Helper |
ID | eknkjedaohafedihakaobhjfaabelkem |
URL Oficial | https://chromewebstore.google.com/detail/mojidict-helper/eknkjedaohafedihakaobhjfaabelkem |
Descrição | Show popup of Japanese vocabulary when double clicking on any text in webpage |
Tamanho do Arquivo | 37.34 KB |
Contagem de Instalações | 225 |
Versão Atual | 1.1.0 |
Última Atualização | 2020-03-25 |
Data de Publicação | 2020-03-22 |
Classificação | 5.00/5 Total de 6 Avaliações |
Desenvolvedor | Yukai Huang |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/Yukaii/mojidict-helper |
URL da Página de Ajuda | https://github.com/Yukaii/mojidict-helper/issues |
Idiomas Suportados | 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" ] } |