Urban Dictionary Lookup
A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.
Co to jest Urban Dictionary Lookup?
Urban Dictionary Lookup to rozszerzenie Chrome opracowane przez abnersajr, a jego główną funkcją jest „A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Urban Dictionary Lookup
Pobierz pliki rozszerzeń Urban Dictionary Lookup w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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'
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | oiagnmlamcdjaklkoigciikofncicpkb |
Oficjalny URL | https://chrome.google.com/webstore/detail/urban-dictionary-lookup/oiagnmlamcdjaklkoigciikofncicpkb |
Opis | A simple extension to lookup a selected text on Urban Dictionary Website and get the definition. |
Rozmiar pliku | 123 KB |
Liczba instalacji | 133 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2017-07-24 |
Data Publikacji | 2017-07-24 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | abnersajr |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/abnersajr/chrome-urban-dictionary-lookup/issues |
Obsługiwane Języki | 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" ] } } |