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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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
        }
    ]
}