Dictionary Lookup

Look up any word in an inline frame with a simple click and without leaving the page.

Dictionary Lookup란 무엇입니까?

Dictionary Lookup은(는) Max Shawabkeh에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Look up any word in an inline frame with a simple click and without leaving the page."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        This extension that allows you to quickly look up definitions of words and phrases in a clean inline box. The definitions come from Wiktionary, but have been preprocessed to reduce formatting and provide faster lookup. Hold a modifier key (Alt on Windows, Command on Mac, Ctrl on Linux) and double-click or select any word to look it up - an inline box will open to the dictionary entry of that word, usually including examples, audio pronunciation and synonyms.

You can also lookup manually-entered queries using a shortcut which displays a small query form.

NOTES:
1. After installing, pages already open will not work for looking up - just refresh them and it'll be solved.
2. The Chrome Extensions Gallery pages don't allow lookup (or any on-page extensions) for security reasons. 
3. This extension does not add a toolbar icon.

Icon:
  http://www.iconarchive.com/show/buuf-icons-by-mattahan/Dictionary-icon.html
  Created by Paul Davey, used as per the Creative Commons BY-NC-SA license.

If you want to select different dictionaries, try Inline Search & Lookup:
  https://chrome.google.com/extensions/detail/pebegifiepdlicjchldkdlmbohhhpcfi                    

확장 프로그램 기본 정보

이름 Dictionary Lookup Dictionary Lookup
ID ipdjaafajlfiopcppipdinmcjbcpofhd
공식 URL https://chromewebstore.google.com/detail/dictionary-lookup/ipdjaafajlfiopcppipdinmcjbcpofhd
설명 Look up any word in an inline frame with a simple click and without leaving the page.
파일 크기 45.79 KB
설치 횟수 23,155
현재 버전 4.3.5
최근 업데이트 2021-05-11
출시 날짜 2015-03-04
평점 4.15/5 총 379 개의 평점
개발자 Max Shawabkeh
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/max99x/dict-lookup-chrome-ext
도움말 페이지 URL https://github.com/max99x/dict-lookup-chrome-ext/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Dictionary Lookup",
    "version": "4.3.5",
    "manifest_version": 2,
    "description": "Look up any word in an inline frame with a simple click and without leaving the page.",
    "icons": {
        "128": "img\/icon.png"
    },
    "options_page": "options.htm",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "frame.css"
            ],
            "js": [
                "lookup.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "permissions": [
        "http:\/\/dictionary-lookup.org\/",
        "http:\/\/commons.wikimedia.org\/"
    ],
    "web_accessible_resources": [
        "img\/back.png",
        "img\/gradient_down.png",
        "img\/handle.png",
        "img\/loader.gif",
        "img\/external.png",
        "img\/gradient_up.png",
        "img\/icon.png",
        "img\/speaker.png"
    ]
}