SlangLang

Easy and comprehensive lookup of word definitions (including slang)

Apa itu SlangLang?

SlangLang adalah ekstensi Chrome yang dikembangkan oleh Rose, dan fitur utamanya adalah "Easy and comprehensive lookup of word definitions (including slang)".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi SlangLang

Unduh file ekstensi SlangLang dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
URL Resmi https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
Deskripsi Easy and comprehensive lookup of word definitions (including slang)
Ukuran File 2.83 MB
Jumlah Instalasi 307
Versi Saat Ini 1.1
Terakhir Diperbarui 2016-05-13
Tanggal Publikasi 2016-05-13
Penilaian 5.00/5 Total 6 Penilaian
Pengembang Rose
Tipe Pembayaran free
Situs Ekstensi https://github.com/rosexu/slang-translator
URL Halaman Bantuan https://github.com/rosexu/slang-translator
Bahasa yang Didukung 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
        }
    ]
}