SlangLang

Easy and comprehensive lookup of word definitions (including slang)

Co je SlangLang?

SlangLang je rozšíření Chrome vyvinuté Rose, a jeho hlavní funkcí je „Easy and comprehensive lookup of word definitions (including slang)“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření SlangLang

Stáhněte si soubory rozšíření SlangLang ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
Oficiální URL https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
Popis Easy and comprehensive lookup of word definitions (including slang)
Velikost souboru 2.83 MB
Počet instalací 307
Aktuální Verze 1.1
Poslední Aktualizace 2016-05-13
Datum Vydání 2016-05-13
Hodnocení 5.00/5 Celkem 6 Hodnocení
Vývojář Rose
Typ Platby free
Webové stránky Rozšíření https://github.com/rosexu/slang-translator
URL Stránky Nápovědy https://github.com/rosexu/slang-translator
Podporované Jazyky 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
        }
    ]
}