Dictionary

Search words on Wiktionary.org

Dictionary là gì?

Dictionary là một tiện ích mở rộng Chrome được phát triển bởi https://danial23.com, và tính năng chính của nó là "Search words on Wiktionary.org".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Dictionary

Tải xuống các tệp mở rộng Dictionary dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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".                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Dictionary Dictionary
ID cgeoeehlcbijkefhlmcnoahlelccfndj
URL Chính Thức https://chromewebstore.google.com/detail/dictionary/cgeoeehlcbijkefhlmcnoahlelccfndj
Mô tả Search words on Wiktionary.org
Kích Thước Tệp 24.26 KB
Số Lần Cài Đặt 35
Phiên Bản Hiện Tại 0.3.3
Cập Nhật Lần Cuối 2023-11-01
Ngày Phát Hành 2023-07-30
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://danial23.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/danial23/wiktionary-chrome-extension
URL Trang Trợ Giúp https://github.com/danial23/wiktionary-chrome-extension/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}