Dictionary

Search words on Wiktionary.org

Dictionary क्या है?

Dictionary https://danial23.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Search words on Wiktionary.org"।

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Find the definition of any word on a web page. Uses the side panel.

- search on highlight
- popup mode (English only)
- available in 162 languages
- free and open source

Usage instructions:

- Open the side panel by clicking the extension icon.
     Note: You need to enable the Side Panel feature in Chrome.
- Once the side panel is open, search Dictionary by highlighting a word.
- To change the language of Dictionary, right-click the extension icon and select "Options".
- Popup Mode: Highlight a word by double-clicking or dragging to see its definition(s) in a popup. Popup Mode is only available in English.
Alt + P is the shortcut to enable/disable popup mode. You can change this shortcut in chrome://extensions/shortcuts

Note: In PDF files, the methods above do not work. Instead, while the side panel is open, highlight a word, right-click it and select "Search on Wiktionary.org".                    

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

नाम Dictionary Dictionary
ID cgeoeehlcbijkefhlmcnoahlelccfndj
आधिकारिक URL https://chromewebstore.google.com/detail/dictionary/cgeoeehlcbijkefhlmcnoahlelccfndj
विवरण Search words on Wiktionary.org
फ़ाइल का आकार 24.26 KB
स्थापना संख्या 35
वर्तमान संस्करण 0.3.3
अंतिम अपडेट 2023-11-01
प्रकाशन तिथि 2023-07-30
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://danial23.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/danial23/wiktionary-chrome-extension
सहायता पृष्ठ URL https://github.com/danial23/wiktionary-chrome-extension/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dictionary",
    "description": "Search words on Wiktionary.org",
    "version": "0.3.3",
    "minimum_chrome_version": "116",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "background": {
        "service_worker": "service-worker.js",
        "type": "module"
    },
    "action": {
        "default_title": "Dictionary"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "define-selected-word.js"
            ],
            "css": [
                "wiktionary-popup.css"
            ]
        }
    ],
    "commands": {
        "toggle-popup-mode": {
            "suggested_key": {
                "default": "Alt+P"
            },
            "description": "Toggle popup mode"
        }
    },
    "side_panel": {
        "default_path": "sidepanel.html"
    },
    "permissions": [
        "sidePanel",
        "contextMenus",
        "storage"
    ]
}