SlangLang

Easy and comprehensive lookup of word definitions (including slang)

Was ist SlangLang?

SlangLang ist eine Chrome-Erweiterung, die von Rose entwickelt wurde, und ihr Hauptmerkmal ist "Easy and comprehensive lookup of word definitions (including slang)".

Erweiterungsscreenshots

screenshot

SlangLang-Erweiterungs-CRX-Datei herunterladen

Laden Sie SlangLang-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
Offizielle URL https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
Beschreibung Easy and comprehensive lookup of word definitions (including slang)
Dateigröße 2.83 MB
Installationsanzahl 307
Aktuelle Version 1.1
Letztes Update 2016-05-13
Veröffentlichungsdatum 2016-05-13
Bewertung 5.00/5 Insgesamt 6 Bewertungen
Entwickler Rose
Zahlungsart free
Erweiterungswebsite https://github.com/rosexu/slang-translator
Hilfeseite URL https://github.com/rosexu/slang-translator
Unterstützte Sprachen 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
        }
    ]
}