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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A simple extension to lookup a selected text on Urban Dictionary Website and get the definition."입니다.
확장 프로그램 스크린샷
Urban Dictionary Lookup 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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" ] } } |