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 - это расширение Chrome, разработанное abnersajr, и его основная функция - "A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.".
Снимки экрана расширения
Скачать файл CRX расширения Urban Dictionary Lookup
Скачайте файлы расширений 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'
Основная информация о расширении
Название | |
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 |
Электронная почта | [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" ] } } |