SlangLang

Easy and comprehensive lookup of word definitions (including slang)

SlangLang란 무엇입니까?

SlangLang은(는) Rose에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Easy and comprehensive lookup of word definitions (including slang)"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        SlangLang is a light-weight Chrome extension that allows easy lookups for the definitions of words (proper English and slang) right in your browser. Supports all sites including Twitter and Facebook. It utilizes Urban Dictionary API for slang lookup and Montanaflynn Dictionary for proper English lookup. 

How to use:

Use your cursor to highlight the word you wish to lookup. A tooltip containing the definition of the word will pop up right beside it.                    

확장 프로그램 기본 정보

이름 SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
공식 URL https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
설명 Easy and comprehensive lookup of word definitions (including slang)
파일 크기 2.83 MB
설치 횟수 307
현재 버전 1.1
최근 업데이트 2016-05-13
출시 날짜 2016-05-13
평점 5.00/5 총 6 개의 평점
개발자 Rose
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/rosexu/slang-translator
도움말 페이지 URL https://github.com/rosexu/slang-translator
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SlangLang",
    "description": "Easy and comprehensive lookup of word definitions (including slang)",
    "version": "1.1",
    "background": {
        "scripts": [
            "javascripts\/background.js",
            "bower_components\/jquery\/dist\/jquery.min.js"
        ]
    },
    "browser_action": {
        "default_icon": "images\/dictionary-icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "https:\/\/ajax.googleapis.com\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "",
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "bower_components\/jquery\/dist\/jquery.min.js",
                "bower_components\/jquery-ui\/jquery-ui.min.js",
                "javascripts\/contentscript.js"
            ],
            "css": [
                "styles\/tooltip.css"
            ],
            "all_frames": false
        }
    ]
}