Dictionary+

An advanced dictionary.

Dictionary+란 무엇입니까?

Dictionary+은(는) http://www.tanmaypatil.me에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An advanced dictionary."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 Dictionary+ Dictionary+
ID kokooihpgalpliadoojifljfgpeeddmc
공식 URL https://chrome.google.com/webstore/detail/dictionary+/kokooihpgalpliadoojifljfgpeeddmc
설명 An advanced dictionary.
파일 크기 482 KB
설치 횟수 774
현재 버전 0.1.4
최근 업데이트 2014-03-11
출시 날짜 2014-03-11
평점 4.90/5 총 10 개의 평점
개발자 http://www.tanmaypatil.me
결제 유형 free
지원되는 언어 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"
            }
        }
    }
}