Dictionary Tool

This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension

Dictionary Tool क्या है?

Dictionary Tool https://stlwebsitedevelopment.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension"।

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

screenshot

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

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

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

                        A chrome extension that allows you to highlight a word on the page, click on my extension and get a definition of the word you have highlighted. The extension is connected to a dictionary database and uses a special algorithm to retrieve the highlighted text, query the database and retrieve the definition for you in an elegant, simple, and well designed chrome extension.                    

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

नाम Dictionary Tool Dictionary Tool
ID edifcpjfgilelnbmcihdcfhggmjodfmh
आधिकारिक URL https://chromewebstore.google.com/detail/dictionary-tool/edifcpjfgilelnbmcihdcfhggmjodfmh
विवरण This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension
फ़ाइल का आकार 181 KB
स्थापना संख्या 577
वर्तमान संस्करण 2.1
अंतिम अपडेट 2023-01-26
प्रकाशन तिथि 2017-07-31
रेटिंग 2.00/5 कुल 4 रेटिंग्स
डेवलपर https://stlwebsitedevelopment.com
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary Tool",
    "description": "This extention allows you to define any word on the screen by highlighting it and then clicking on the chrome extension",
    "version": "2.1",
    "author": "Leon Krugliakov",
    "icons": {
        "16": "icons\/icon.png",
        "32": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "scripting",
        "activeTab"
    ],
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "js": [
                "scripts\/main.js",
                "scripts\/jquery.js"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ]
}