SlangLang

Easy and comprehensive lookup of word definitions (including slang)

What is SlangLang?

SlangLang is a Chrome extension developed by Rose, and its main feature is "Easy and comprehensive lookup of word definitions (including slang)".

Extension Screenshots

screenshot

Download SlangLang Extension CRX File

Download SlangLang extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
Official URL https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
Description Easy and comprehensive lookup of word definitions (including slang)
File Size 2.83 MB
Installation Count 307
Current Version 1.1
Last Updated 2016-05-13
Publish Date 2016-05-13
Rating 5.00/5 Total 6 Ratings
Developer Rose
Payment Type free
Extension Website https://github.com/rosexu/slang-translator
Help Page URL https://github.com/rosexu/slang-translator
Supported Languages 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
        }
    ]
}