Urban Lyrics
A Chrome extension to view lyrics.
Urban Lyrics란 무엇입니까?
Urban Lyrics은(는) Leon Li에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A Chrome extension to view lyrics."입니다.
확장 프로그램 스크린샷
Urban Lyrics 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
An extension that provides its user with lyrics to a song with the click of a button. It also has integrated search boxes for word definitions by Urban Dictionary and also for custom song lookups. At the end of the song lyrics is also a Genius link for the current song displayed.
확장 프로그램 기본 정보
이름 | Urban Lyrics |
ID | akahkofaophahlgdibcfelkfnamedong |
공식 URL | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
설명 | A Chrome extension to view lyrics. |
파일 크기 | 807 KB |
설치 횟수 | 392 |
현재 버전 | 2.2 |
최근 업데이트 | 2021-01-10 |
출시 날짜 | 2020-10-19 |
평점 | 4.63/5 총 27 개의 평점 |
개발자 | Leon Li |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://leonli.cc |
도움말 페이지 URL | https://github.com/leon-li1/Urban-Lyrics |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Urban Lyrics", "version": "2.2", "manifest_version": 2, "description": "A Chrome extension to view lyrics.", "icons": { "16": "icons\/UrbanLyrics-16.png", "48": "icons\/UrbanLyrics-48.png", "128": "icons\/UrbanLyrics-128.png" }, "browser_action": { "default_title": "Urban Lyrics", "default_popup": "popup.html" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "storage", "https:\/\/fonts.googleapis.com\/*" ], "content_security_policy": "default-src 'self'; connect-src *; font-src *; style-src-elem * 'unsafe-inline'; script-src-elem * ; style-src 'unsafe-inline'", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/content.js" ] } ], "incognito": "not_allowed" } |