SlangLang

Easy and comprehensive lookup of word definitions (including slang)

Wat is SlangLang?

SlangLang is een Chrome-extensie ontwikkeld door Rose, en de belangrijkste functie is "Easy and comprehensive lookup of word definitions (including slang)".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie SlangLang

Download SlangLang-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
Officiële URL https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
Beschrijving Easy and comprehensive lookup of word definitions (including slang)
Bestandsgrootte 2.83 MB
Aantal Installaties 307
Huidige Versie 1.1
Laatst Bijgewerkt 2016-05-13
Publicatiedatum 2016-05-13
Beoordeling 5.00/5 Totaal 6 Beoordelingen
Ontwikkelaar Rose
Betalingswijze free
Extensiewebsite https://github.com/rosexu/slang-translator
Help Pagina-URL https://github.com/rosexu/slang-translator
Ondersteunde Talen 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
        }
    ]
}