Dictionary+

An advanced dictionary.

Dictionary+ là gì?

Dictionary+ là một tiện ích mở rộng Chrome được phát triển bởi http://www.tanmaypatil.me, và tính năng chính của nó là "An advanced dictionary.".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        View more than definitions while you browse the web.
With this extension, you can:
1) Search a word and get definitions, examples and related words.
2) Get complete definitions with all parts of speech possible.
3) Extension's user interface is focused on a better readability while browsing above features.
4) Get word of the day everyday.

This is a very basic version of the extension. Many features due in next updates. 
Stay tuned for the updates! ;)

Upcoming features:
1) Double-click to search a word: with a bubble pop-up.
2) History of words searched.
3) Web and wiki definitions.
4) Pronunciations.

NOTE: This extension uses Wordnik API to fetch definitions, examples and related words.                    

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

Tên Dictionary+ Dictionary+
ID kokooihpgalpliadoojifljfgpeeddmc
URL Chính Thức https://chrome.google.com/webstore/detail/dictionary+/kokooihpgalpliadoojifljfgpeeddmc
Mô tả An advanced dictionary.
Kích Thước Tệp 482 KB
Số Lần Cài Đặt 774
Phiên Bản Hiện Tại 0.1.4
Cập Nhật Lần Cuối 2014-03-11
Ngày Phát Hành 2014-03-11
Đánh Giá 4.90/5 Tổng số 10 Đánh Giá
Nhà Phát Triển http://www.tanmaypatil.me
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "name": "Dictionary+",
    "description": "An advanced dictionary.",
    "version": "0.1.4",
    "background": {
        "scripts": [
            "eventPage.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/developer.wordnik.com\/*",
        "http:\/\/developer.wordnik.com\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "contextMenus",
        "storage",
        "tabs"
    ],
    "icons": {
        "128": "static\/icon128.png",
        "16": "static\/icon16.png",
        "32": "static\/icon32.png",
        "48": "static\/icon48.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "static\/icon19.png"
    },
    "commands": {
        "toggle-feature": {
            "suggested_key": {
                "default": "Ctrl+Shift+Y"
            },
            "description": "Toggle Dictionary+"
        },
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+F",
                "mac": "MacCtrl+Shift+F"
            }
        }
    }
}