SlangLang

Easy and comprehensive lookup of word definitions (including slang)

SlangLang क्या है?

SlangLang Rose द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Easy and comprehensive lookup of word definitions (including slang)"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SlangLang एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
सहायता पृष्ठ 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
        }
    ]
}