SlangLang

Easy and comprehensive lookup of word definitions (including slang)

Co to jest SlangLang?

SlangLang to rozszerzenie Chrome opracowane przez Rose, a jego główną funkcją jest „Easy and comprehensive lookup of word definitions (including slang)”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia SlangLang

Pobierz pliki rozszerzeń SlangLang w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
Oficjalny URL https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
Opis Easy and comprehensive lookup of word definitions (including slang)
Rozmiar pliku 2.83 MB
Liczba instalacji 307
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-05-13
Data Publikacji 2016-05-13
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper Rose
Typ Płatności free
Strona Rozszerzenia https://github.com/rosexu/slang-translator
Adres URL Strony Pomocy https://github.com/rosexu/slang-translator
Obsługiwane Języki 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
        }
    ]
}