SlangLang

Easy and comprehensive lookup of word definitions (including slang)

ما هو SlangLang؟

SlangLang هو إضافة Chrome تم تطويرها بواسطة Rose، والميزة الرئيسية لها هي "Easy and comprehensive lookup of word definitions (including slang)".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة SlangLang

قم بتنزيل ملفات الامتداد SlangLang بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
عنوان URL الرسمي https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
الوصف Easy and comprehensive lookup of word definitions (including slang)
حجم الملف 2.83 MB
عدد التثبيتات 307
النسخة الحالية 1.1
آخر تحديث 2016-05-13
تاريخ النشر 2016-05-13
تقييم 5.00/5 مجموع تقييمات 6
المطور Rose
نوع الدفع free
موقع الإضافة https://github.com/rosexu/slang-translator
عنوان صفحة المساعدة https://github.com/rosexu/slang-translator
اللغات المدعومة 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
        }
    ]
}