SlangLang

Easy and comprehensive lookup of word definitions (including slang)

Cos'è SlangLang?

SlangLang è un'estensione di Chrome sviluppata da Rose, e la sua funzione principale è "Easy and comprehensive lookup of word definitions (including slang)".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione SlangLang

Scarica i file di estensione SlangLang in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
URL Ufficiale https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
Descrizione Easy and comprehensive lookup of word definitions (including slang)
Dimensione del File 2.83 MB
Conteggio Installazioni 307
Versione Corrente 1.1
Ultimo Aggiornamento 2016-05-13
Data di Pubblicazione 2016-05-13
Valutazione 5.00/5 Totale 6 Valutazioni
Sviluppatore Rose
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rosexu/slang-translator
URL della Pagina di Aiuto https://github.com/rosexu/slang-translator
Lingue Supportate 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
        }
    ]
}