Define

Get the definition/synonym of any word in a webpage.

Define란 무엇입니까?

Define은(는) lerxst에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Get the definition/synonym of any word in a webpage."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        v2.0.1
**Google dictionary error fixed**

• Select any word on a webpage and see its definition or its synonym by using the context-menu option.
The definition can also be viewed using the key combination 'Ctrl+m' after selecting a word.

•You can also type in the word you want to look-up by using Chrome's omnibox.

**Using the OMNIBOX**
To use Chrome's address bar for a quick search, type 'df' (without quotes) and press 'Tab' to get the prompt. Type in the search word and press enter. 
To look the word up in a thesaurus, append the search word with '\t' (without quotes).

Choose from 5 online dictionaries -
• Google
• Merriam-Webster
• Collins
• The Free Dictionary

and 3 online thesauruses -
• Thesaurus.com
• Merriam-Webster
• Collins

The dictionary/thesaurus to be used can be selected from the Options page of the extension (Tools -> Extensions).                    

확장 프로그램 기본 정보

이름 Define Define
ID dkfohljnogkakijpbgoebdcbgllabgbm
공식 URL https://chrome.google.com/webstore/detail/define/dkfohljnogkakijpbgoebdcbgllabgbm
설명 Get the definition/synonym of any word in a webpage.
파일 크기 248 KB
설치 횟수 1,000
현재 버전 2.0.1
최근 업데이트 2013-12-28
출시 날짜 2013-12-28
평점 3.88/5 총 32 개의 평점
개발자 lerxst
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Define",
    "version": "2.0.1",
    "options_page": "options.html",
    "description": "Get the definition\/synonym of any word in a webpage.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "omnibox": {
        "keyword": "df"
    },
    "permissions": [
        "contextMenus",
        "tabs"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "jquery-1.4.2.js",
                "jquery.hotkeys.js",
                "content.js"
            ]
        }
    ]
}