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 abnersajr द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension to lookup a selected text on Urban Dictionary Website and get the definition."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Urban Dictionary Lookup एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } } |