Dictionary

Search words on Wiktionary.org

Dictionary란 무엇입니까?

Dictionary은(는) https://danial23.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search words on Wiktionary.org"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Dictionary 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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"
    ]
}