Urban Dictionary Lookup
A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.
Was ist Urban Dictionary Lookup?
Urban Dictionary Lookup ist eine Chrome-Erweiterung, die von abnersajr entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.".
Erweiterungsscreenshots
Urban Dictionary Lookup-Erweiterungs-CRX-Datei herunterladen
Laden Sie Urban Dictionary Lookup-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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'
Grundlegende Informationen zur Erweiterung
Name | |
ID | oiagnmlamcdjaklkoigciikofncicpkb |
Offizielle URL | https://chrome.google.com/webstore/detail/urban-dictionary-lookup/oiagnmlamcdjaklkoigciikofncicpkb |
Beschreibung | A simple extension to lookup a selected text on Urban Dictionary Website and get the definition. |
Dateigröße | 123 KB |
Installationsanzahl | 133 |
Aktuelle Version | 1.1 |
Letztes Update | 2017-07-24 |
Veröffentlichungsdatum | 2017-07-24 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | abnersajr |
[email protected] | |
Zahlungsart | free |
Hilfeseite URL | https://github.com/abnersajr/chrome-urban-dictionary-lookup/issues |
Unterstützte Sprachen | 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" ] } } |