MOJiDict Helper
Show popup of Japanese vocabulary when double clicking on any text in webpage
Cos'è MOJiDict Helper?
MOJiDict Helper è un'estensione di Chrome sviluppata da Yukai Huang, e la sua funzione principale è "Show popup of Japanese vocabulary when double clicking on any text in webpage".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione MOJiDict Helper
Scarica i file di estensione MOJiDict Helper in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
只要輕點兩下網頁中的任意文字,MOJiDict Helper 就會跳出小視窗搜尋單字,讓你快速記憶查詢日文單字!
背後利用了「MOJi辞書」mojidict.com 的 API Informazioni di Base sull'Estensione
| Nome | |
| ID | eknkjedaohafedihakaobhjfaabelkem |
| URL Ufficiale | https://chromewebstore.google.com/detail/mojidict-helper/eknkjedaohafedihakaobhjfaabelkem |
| Descrizione | Show popup of Japanese vocabulary when double clicking on any text in webpage |
| Dimensione del File | 37.34 KB |
| Conteggio Installazioni | 225 |
| Versione Corrente | 1.1.0 |
| Ultimo Aggiornamento | 2020-03-25 |
| Data di Pubblicazione | 2020-03-22 |
| Valutazione | 5.00/5 Totale 6 Valutazioni |
| Sviluppatore | Yukai Huang |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/Yukaii/mojidict-helper |
| URL della Pagina di Aiuto | https://github.com/Yukaii/mojidict-helper/issues |
| Lingue Supportate | 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"
]
} | |