Lyreka Song Lyrics
With one click you can find the lyrics for songs playing on YouTube, Pandora and Spotify.
Lyreka Song Lyrics란 무엇입니까?
Lyreka Song Lyrics은(는) http://lyreka.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "With one click you can find the lyrics for songs playing on YouTube, Pandora and Spotify."입니다.
확장 프로그램 스크린샷
Lyreka Song Lyrics 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Lyreka Song Lyrics extension for chrome automatically find lyrics to songs that are being played on YouTube, Spotify and Pandora. Once you are listening to music on one of these websites the Lyreka extension icon will turn green to let you know when the lyrics to the song is found. With a simple click on the green Lyreka icon, a new browser tab will open and display song lyrics at Lyreka.com. There is no interruption in the song that is being played and nothing intrusive on your music player page. Now you will be able to discover the meanings behind song lyrics at Lyreka.com while listening to songs on your favorite music websites. Note: Lyreka is in beta and sometimes we don't find the exact match. You could hover over the green icon to get the song title that was found. We are currently working to get better at matching songs and we appreciate your feedback. Thanks for trying our extension and we hope you find it useful.
확장 프로그램 기본 정보
이름 | |
ID | kopkjepbjibcakflbldeijldfnnflapi |
공식 URL | https://chrome.google.com/webstore/detail/lyreka-song-lyrics/kopkjepbjibcakflbldeijldfnnflapi |
설명 | With one click you can find the lyrics for songs playing on YouTube, Pandora and Spotify. |
파일 크기 | 25.57 KB |
설치 횟수 | 228 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2016-01-14 |
출시 날짜 | 2016-01-14 |
평점 | 3.00/5 총 6 개의 평점 |
개발자 | http://lyreka.com |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.lyreka.com/ |
도움말 페이지 URL | https://www.lyreka.com/contact-us/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lyreka Song Lyrics", "short_name": "Lyreka Lyrics", "description": "With one click you can find the lyrics for songs playing on YouTube, Pandora and Spotify.", "version": "1.0.2", "icons": { "16": "icons\/icon_16.png", "32": "icons\/icon_32.png", "38": "icons\/icon_38.png", "64": "icons\/icon_64.png", "128": "icons\/icon_128.png", "320": "icons\/icon_320.png" }, "browser_action": { "default_icon": "icons\/icon_off.png", "default_title": "Get Song Lyrics at Lyreka.com" }, "content_scripts": [ { "matches": [ "https:\/\/play.spotify.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "checker.js" ], "run_at": "document_idle" }, { "matches": [ "http:\/\/www.pandora.com\/*" ], "js": [ "checker_pandora.js" ], "run_at": "document_idle" } ], "permissions": [ "alarms", "tabs", "activeTab", "http:\/\/www.lyreka.com\/api\/*" ], "background": { "scripts": [ "background.js" ] } } |