SlangLang

Easy and comprehensive lookup of word definitions (including slang)

SlangLang là gì?

SlangLang là một tiện ích mở rộng Chrome được phát triển bởi Rose, và tính năng chính của nó là "Easy and comprehensive lookup of word definitions (including slang)".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SlangLang

Tải xuống các tệp mở rộng SlangLang dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SlangLang SlangLang
ID eilkfbammopmhlfghljojfkdedhiknjd
URL Chính Thức https://chromewebstore.google.com/detail/slanglang/eilkfbammopmhlfghljojfkdedhiknjd
Mô tả Easy and comprehensive lookup of word definitions (including slang)
Kích Thước Tệp 2.83 MB
Số Lần Cài Đặt 307
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2016-05-13
Ngày Phát Hành 2016-05-13
Đánh Giá 5.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển Rose
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rosexu/slang-translator
URL Trang Trợ Giúp https://github.com/rosexu/slang-translator
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}