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" ] } } |