English Dictionary Lookup

Allows for easy lookup and display of English word definitions within webpages via a double-click and an unobtrusive dialog box.

English Dictionary Lookup란 무엇입니까?

English Dictionary Lookup은(는) Cole Anderson에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows for easy lookup and display of English word definitions within webpages via a double-click and an unobtrusive dialog box."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        This extension allows for easy lookup and display of English word definitions within webpages via an unobtrusive dialog box. All the dictionary data (over 13MB compressed) is located within the add-on, so this add-on will never connect to an external site and can operate without an internet connection.

To use this add-on, simply double-click on any word within a webpage and, if it is found in the dictionary, a dialog box will show up in the middle of the screen containing the word definition. Click anywhere outside the dialog box to dismiss the dialog. You can also lookup words inside of the dialog box by double-clicking on them. Please note that the word must be selectable for the add-on to recognize it.

The definition dialog box contains a header with page links that allow you to quickly jump to word synonyms or other word forms if they are available. These links are named as abbreviated parts of speech (i.e. n. for noun, v. for verb, and p.pr.&vb.n. for "participle present & verbal noun"). Simply click on the links to jump to the relevant sections within the dialog. The header also includes a bracketed word with left arrow; this is the word that was defined previously and works as a back button if this word is double-clicked.

This add-on would not be possible without the GNU Collaborative International Dictionary of English (GCIDE) (http://gcide.gnu.org.ua/) and by extension the GCIDE_XML (http://www.ibiblio.org/webster/).

Please note that the source dictionary data is sometimes incomplete. Missing symbols or characters will show up as unicode question marks. Also note that this add-on uses an algorithm to find word roots if the searched word is inflected. This algorithm is not perfect and will sometimes fail to find a root word or find the wrong root word. Lookup accuracy may improve through future updates.

Thank you for your interest in this add-on and I hope you will find it of good use.                    

확장 프로그램 기본 정보

이름 English Dictionary Lookup English Dictionary Lookup
ID efgghckmhneihejmgdnogpgcggpagjem
공식 URL https://chrome.google.com/webstore/detail/english-dictionary-lookup/efgghckmhneihejmgdnogpgcggpagjem
설명 Allows for easy lookup and display of English word definitions within webpages via a double-click and an unobtrusive dialog box.
파일 크기 13.74 MB
설치 횟수 1,000
현재 버전 1.1.2.0
최근 업데이트 2016-09-14
출시 날짜 2016-09-14
평점 4.00/5 총 12 개의 평점
개발자 Cole Anderson
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "English Dictionary Lookup",
    "version": "1.1.2.0",
    "description": "Allows for easy lookup and display of English word definitions within webpages via a double-click and an unobtrusive dialog box.",
    "offline_enabled": true,
    "icons": {
        "128": "icons\/dictlookup-128.png"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "index.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ],
    "web_accessible_resources": [
        "data\/gcide\/xml_files\/gcide_abbreviations.csv",
        "data\/gcide\/xml_files\/gcide_abbreviations.xml",
        "data\/gcide\/xml_files\/gcide_a.xml",
        "data\/gcide\/xml_files\/gcide_b.xml",
        "data\/gcide\/xml_files\/gcide_c.xml",
        "data\/gcide\/xml_files\/gcide_d.xml",
        "data\/gcide\/xml_files\/gcide_e.xml",
        "data\/gcide\/xml_files\/gcide_f.xml",
        "data\/gcide\/xml_files\/gcide_g.xml",
        "data\/gcide\/xml_files\/gcide_h.xml",
        "data\/gcide\/xml_files\/gcide_i.xml",
        "data\/gcide\/xml_files\/gcide_j.xml",
        "data\/gcide\/xml_files\/gcide_k.xml",
        "data\/gcide\/xml_files\/gcide_l.xml",
        "data\/gcide\/xml_files\/gcide_m.xml",
        "data\/gcide\/xml_files\/gcide_n.xml",
        "data\/gcide\/xml_files\/gcide_o.xml",
        "data\/gcide\/xml_files\/gcide_p.xml",
        "data\/gcide\/xml_files\/gcide_q.xml",
        "data\/gcide\/xml_files\/gcide_r.xml",
        "data\/gcide\/xml_files\/gcide_s.xml",
        "data\/gcide\/xml_files\/gcide_symbols.csv",
        "data\/gcide\/xml_files\/gcide_t.xml",
        "data\/gcide\/xml_files\/gcide_u.xml",
        "data\/gcide\/xml_files\/gcide_v.xml",
        "data\/gcide\/xml_files\/gcide_w.xml",
        "data\/gcide\/xml_files\/gcide_x.xml",
        "data\/gcide\/xml_files\/gcide_y.xml",
        "data\/gcide\/xml_files\/gcide_z.xml",
        "data\/gcide\/abbr_regex.txt",
        "data\/gcide\/symbols_regex.txt"
    ]
}