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
官方網址 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"
        ]
    }
}