Define

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

Define là gì?

Define là một tiện ích mở rộng Chrome được phát triển bởi lerxst, và tính năng chính của nó là "Get the definition/synonym of any word in a webpage.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Define 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

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

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

Tên Define Define
ID dkfohljnogkakijpbgoebdcbgllabgbm
URL Chính Thức https://chrome.google.com/webstore/detail/define/dkfohljnogkakijpbgoebdcbgllabgbm
Mô tả Get the definition/synonym of any word in a webpage.
Kích Thước Tệp 248 KB
Số Lần Cài Đặt 1,000
Phiên Bản Hiện Tại 2.0.1
Cập Nhật Lần Cuối 2013-12-28
Ngày Phát Hành 2013-12-28
Đánh Giá 3.88/5 Tổng số 32 Đánh Giá
Nhà Phát Triển lerxst
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}