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ファイルをダウンロード

SlangLang拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
        }
    ]
}