Urban Dictionary Lookup
A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.
Urban Dictionary Lookup là gì?
Urban Dictionary Lookup là một tiện ích mở rộng Chrome được phát triển bởi abnersajr, và tính năng chính của nó là "A simple extension to lookup a selected text on Urban Dictionary Website and get the definition.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Urban Dictionary Lookup
Tải xuống các tệp mở rộng Urban Dictionary Lookup dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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'
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | oiagnmlamcdjaklkoigciikofncicpkb |
URL Chính Thức | https://chrome.google.com/webstore/detail/urban-dictionary-lookup/oiagnmlamcdjaklkoigciikofncicpkb |
Mô tả | A simple extension to lookup a selected text on Urban Dictionary Website and get the definition. |
Kích Thước Tệp | 123 KB |
Số Lần Cài Đặt | 133 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2017-07-24 |
Ngày Phát Hành | 2017-07-24 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | abnersajr |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/abnersajr/chrome-urban-dictionary-lookup/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } } |