Urban Dictionary Lookup
A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.
Co je Urban Dictionary Lookup?
Urban Dictionary Lookup je rozšíření Chrome vyvinuté abnersajr, a jeho hlavní funkcí je „A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Urban Dictionary Lookup
Stáhněte si soubory rozšíření Urban Dictionary Lookup ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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'
Základní Informace o Rozšíření
Název | |
ID | oiagnmlamcdjaklkoigciikofncicpkb |
Oficiální URL | https://chrome.google.com/webstore/detail/urban-dictionary-lookup/oiagnmlamcdjaklkoigciikofncicpkb |
Popis | A simple extension to lookup a selected text on Urban Dictionary Website and get the definition. |
Velikost souboru | 123 KB |
Počet instalací | 133 |
Aktuální Verze | 1.1 |
Poslední Aktualizace | 2017-07-24 |
Datum Vydání | 2017-07-24 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | abnersajr |
[email protected] | |
Typ Platby | free |
URL Stránky Nápovědy | https://github.com/abnersajr/chrome-urban-dictionary-lookup/issues |
Podporované Jazyky | 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" ] } } |