Urban Dictionary Lookup

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

Cos'è Urban Dictionary Lookup?

Urban Dictionary Lookup è un'estensione di Chrome sviluppata da abnersajr, e la sua funzione principale è "A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Urban Dictionary Lookup

Scarica i file di estensione Urban Dictionary Lookup in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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'                    

Informazioni di Base sull'Estensione

Nome Urban Dictionary Lookup Urban Dictionary Lookup
ID oiagnmlamcdjaklkoigciikofncicpkb
URL Ufficiale https://chrome.google.com/webstore/detail/urban-dictionary-lookup/oiagnmlamcdjaklkoigciikofncicpkb
Descrizione A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.
Dimensione del File 123 KB
Conteggio Installazioni 133
Versione Corrente 1.1
Ultimo Aggiornamento 2017-07-24
Data di Pubblicazione 2017-07-24
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore abnersajr
Email [email protected]
Tipo di Pagamento free
URL della Pagina di Aiuto https://github.com/abnersajr/chrome-urban-dictionary-lookup/issues
Lingue Supportate 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"
        ]
    }
}