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