MOJiDict Helper

Show popup of Japanese vocabulary when double clicking on any text in webpage

MOJiDict Helper क्या है?

MOJiDict Helper Yukai Huang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Show popup of Japanese vocabulary when double clicking on any text in webpage"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में MOJiDict Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        只要輕點兩下網頁中的任意文字,MOJiDict Helper 就會跳出小視窗搜尋單字,讓你快速記憶查詢日文單字!

背後利用了「MOJi辞書」mojidict.com 的 API                    

एक्सटेंशन की मूल जानकारी

नाम MOJiDict Helper 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
सहायता पृष्ठ 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"
    ]
}