Urban Dictionary Lookup

A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.

什么是Urban Dictionary Lookup?

Urban Dictionary Lookup是由abnersajr开发的Chrome扩展程序,该扩展的主要功能是“A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.”。

扩展截图

screenshot
screenshot

下载Urban Dictionary Lookup扩展crx文件

下载Urban Dictionary Lookup扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Who never saw an acronym and did not know what it meant?
Now your problem is solved with this simple extension. You select the piece of text and have three options to search the meaning.
Clicking on the action button on your extensions bar.
Right click of the mouse and find the menu option.
Lastly the shortcut 'Ctrl+Shift+U'                    

扩展基本信息

名称 Urban Dictionary Lookup Urban Dictionary Lookup
ID oiagnmlamcdjaklkoigciikofncicpkb
官方URL https://chrome.google.com/webstore/detail/urban-dictionary-lookup/oiagnmlamcdjaklkoigciikofncicpkb
简介 A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.
文件大小 123 KB
安装次数 133
当前版本 1.1
更新时间 2017-07-24
上架时间 2017-07-24
评分 5.00/5 共1次评分
开发者 abnersajr
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/abnersajr/chrome-urban-dictionary-lookup/issues
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Urban Dictionary Lookup",
    "short_name": "ud lookup",
    "description": "A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.",
    "version": "1.1",
    "author": "abnersajr",
    "icons": {
        "16": "16.png",
        "32": "32.png",
        "48": "48.png",
        "72": "72.png",
        "128": "128.png",
        "192": "192.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "16.png",
            "32": "32.png",
            "48": "48.png",
            "72": "72.png",
            "128": "128.png",
            "192": "192.png"
        },
        "default_title": "Lookup selected text"
    },
    "permissions": [
        "contextMenus",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "commands": {
        "urban-lookup": {
            "suggested_key": {
                "default": "Ctrl+Shift+U",
                "mac": "MacCtrl+Shift+U"
            },
            "description": "Execute the lookup of selected text"
        }
    },
    "background": {
        "persistent": false,
        "scripts": [
            "contentscript.js"
        ]
    }
}