SlangLang

Easy and comprehensive lookup of word definitions (including slang)

Что такое SlangLang?

SlangLang - это расширение Chrome, разработанное Rose, и его основная функция - "Easy and comprehensive lookup of word definitions (including slang)".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения SlangLang

Скачайте файлы расширений 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
        }
    ]
}