Simple Dic (Instant Dictionary)

Simple dic is a dictionary chrome extension for easy to check words on a web page

Simple Dic (Instant Dictionary)란 무엇입니까?

Simple Dic (Instant Dictionary)은(는) Happy Larry Kim에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple dic is a dictionary chrome extension for easy to check words on a web page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Simple Dic (Instant Dictionary) 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        * Simple Dic is a dictionary chrome extension for easy to check words on a web page.
* Keyboard Short cut usage : just Ctrl key + Mouse left click on the word you want to check.
   (Mac users can use Mouse double click)
* You can also change the dictionary url on the configuration page.
* More info & source code : https://github.com/LarryKim/SimpleDic/wiki

* Simple  Dic은 웹페이지에서 컨트롤키+마우스 왼쪽클릭으로 쉽게 단어의 정보를 보여주는  확장 프로그램입니다.
   (맥유저는 마우스 더블클릭으로 사용가능)
* 사전 URL은 환경설정에서 자유롭게 변경이 가능합니다.
* 추가정보 및 소스코드 : https://github.com/LarryKim/SimpleDic/wiki                    

확장 프로그램 기본 정보

이름 Simple Dic (Instant Dictionary) Simple Dic (Instant Dictionary)
ID nckcfdmjoihejoigkinnajfaeepfgaak
공식 URL https://chromewebstore.google.com/detail/simple-dic-instant-dictio/nckcfdmjoihejoigkinnajfaeepfgaak
설명 Simple dic is a dictionary chrome extension for easy to check words on a web page
파일 크기 13.2 KB
설치 횟수 769
현재 버전 0.25
최근 업데이트 2013-10-29
출시 날짜 2013-10-28
평점 3.80/5 총 5 개의 평점
개발자 Happy Larry Kim
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/LarryKim/SimpleDic/wiki
도움말 페이지 URL https://docs.google.com/document/d/105rgnM1ZqK4Xl43z7O-TxZEoTxtqDEVkrP3uikEPWrs/edit?usp=sharing
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Simple Dic (Instant Dictionary)",
    "short_name": "Simple Dic",
    "description": "Simple dic is a dictionary chrome extension for easy to check words on a web page",
    "version": "0.25",
    "options_page": "options.html",
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ]
    },
    "icons": {
        "32": ".\/icon\/icon-32.png",
        "128": ".\/icon\/icon-128.png"
    },
    "browser_action": {
        "default_icon": ".\/icon\/icon-32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/js\/lib.js",
                ".\/js\/content.js"
            ]
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        "storage"
    ]
}