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
Eメール [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"
        ]
    }
}