Urban Dictionary Lookup
A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.
¿Qué es Urban Dictionary Lookup?
Urban Dictionary Lookup es una extensión de Chrome desarrollada por abnersajr, y su función principal es "A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Urban Dictionary Lookup
Descarga archivos de extensión Urban Dictionary Lookup en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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'
Información Básica de la Extensión
Nombre | |
ID | oiagnmlamcdjaklkoigciikofncicpkb |
URL Oficial | https://chrome.google.com/webstore/detail/urban-dictionary-lookup/oiagnmlamcdjaklkoigciikofncicpkb |
Descripción | A simple extension to lookup a selected text on Urban Dictionary Website and get the definition. |
Tamaño del Archivo | 123 KB |
Cantidad de Instalaciones | 133 |
Versión Actual | 1.1 |
Última Actualización | 2017-07-24 |
Fecha de Publicación | 2017-07-24 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | abnersajr |
Correo electrónico | [email protected] |
Tipo de Pago | free |
URL de la Página de Ayuda | https://github.com/abnersajr/chrome-urban-dictionary-lookup/issues |
Idiomas Soportados | 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" ] } } |