Click dictionary

Double click on words to see their definition

Click dictionary क्या है?

Click dictionary newdev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Double click on words to see their definition"।

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

screenshot

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

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

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

                        This extension saves you time when reading text on a web page, in a foreign language, by allowing you to double click on the words you don't understand and providing you an intuitive translation popup.                    

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

नाम Click dictionary Click dictionary
ID edeopnindailmgjakdinjklkakmhlmpg
आधिकारिक URL https://chromewebstore.google.com/detail/click-dictionary/edeopnindailmgjakdinjklkakmhlmpg
विवरण Double click on words to see their definition
फ़ाइल का आकार 33.22 KB
स्थापना संख्या 1,570
वर्तमान संस्करण 1.4.3
अंतिम अपडेट 2023-01-31
प्रकाशन तिथि 2017-10-31
रेटिंग 4.09/5 कुल 11 रेटिंग्स
डेवलपर newdev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "newDev",
    "manifest_version": 3,
    "name": "Click dictionary",
    "short_name": "Click dict.",
    "description": "Double click on words to see their definition",
    "version": "1.4.3",
    "action": {
        "default_popup": "\/src\/modules\/action\/action.html"
    },
    "icons": {
        "48": "\/src\/icon\/icon48.png",
        "128": "\/src\/icon\/icon128.png"
    },
    "background": {
        "service_worker": "\/src\/modules\/dictionary-popup\/eventPage.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.css"
            ],
            "js": [
                "\/src\/modules\/dictionary-popup\/dictionary-popup.js"
            ]
        }
    ],
    "options_page": "\/src\/modules\/options\/options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "\/src\/utils\/languageSettings.js",
                "\/src\/utils\/htmlUtils.js",
                "\/src\/utils\/resultTable.js",
                "\/src\/utils\/disabledUrlService.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}