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
官方網址 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
        }
    ]
}