YouTube Genius
This extension shows the Genius.com lyrics and annotations for a YouTube video
YouTube Genius란 무엇입니까?
YouTube Genius은(는) barker.tommy에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension shows the Genius.com lyrics and annotations for a YouTube video"입니다.
확장 프로그램 스크린샷
YouTube Genius 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
When viewing a YouTube music video, YouTube Genius will inject a clickable "Genius" button next to the voting buttons. When the Genius button is clicked, the user's browser will be populated with a new tab that will have the genius.com lyric and annotation information. Alternatively, the user can select to populate a new window with the genius.com lyric and annotation content via the settings menu. The new window will appear side by side with the YouTube video (split screen) for easy lyric viewing while still enjoying the music video! To access the settings menu, simply just click the icon for the browser action (next to the URL bar). **NEW Lyrics can be displayed on the YouTube page now! The lyric content will replace the comment section and a popup will be used for annotation text display
확장 프로그램 기본 정보
이름 | |
ID | jkinhigneocaflebhiajejdjfmcijgcc |
공식 URL | https://chrome.google.com/webstore/detail/youtube-genius/jkinhigneocaflebhiajejdjfmcijgcc |
설명 | This extension shows the Genius.com lyrics and annotations for a YouTube video |
파일 크기 | 59.93 KB |
설치 횟수 | 925 |
현재 버전 | 3.0.1 |
최근 업데이트 | 2017-03-29 |
출시 날짜 | 2017-03-29 |
평점 | 3.00/5 총 20 개의 평점 |
개발자 | barker.tommy |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "YouTube Genius", "description": "This extension shows the Genius.com lyrics and annotations for a YouTube video", "version": "3.0.1", "icons": { "16": "images\/icon.png", "48": "images\/icon.png", "128": "images\/icon.png" }, "background": { "persistent": true, "scripts": [ "js\/libs\/jquery-2.1.4.min.js", "js\/background.js" ] }, "browser_action": { "default_icon": "images\/icon.png", "default_popup": "html\/popup.html" }, "permissions": [ "tabs", "activeTab", "webNavigation", "https:\/\/ajax.googleapis.com\/", "*:\/\/youtube.com\/*", "*:\/\/www.youtube.com\/*", "*:\/\/www.genius.com\/*", "*:\/\/genius.com\/*", "*:\/\/api.genius.com\/*" ], "content_scripts": [ { "matches": [ "http:\/\/youtube.com\/*", "http:\/\/www.youtube.com\/*", "https:\/\/youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "js": [ "js\/libs\/jquery-2.1.4.min.js", "js\/content.js" ], "css": [ "css\/content.css" ], "run_at": "document_end" } ], "web_accessible_resources": [ "images\/*" ] } |