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