MOJiDict Helper
Show popup of Japanese vocabulary when double clicking on any text in webpage
ما هو MOJiDict Helper؟
MOJiDict Helper هو إضافة Chrome تم تطويرها بواسطة Yukai Huang، والميزة الرئيسية لها هي "Show popup of Japanese vocabulary when double clicking on any text in webpage".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة MOJiDict Helper
قم بتنزيل ملفات الامتداد MOJiDict Helper بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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 |
عنوان صفحة المساعدة | 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" ] } |