YouTube Repeater
Repeats YouTube video after it ends.
YouTube Repeater란 무엇입니까?
YouTube Repeater은(는) shogo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Repeats YouTube video after it ends."입니다.
확장 프로그램 스크린샷
YouTube Repeater 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
You can make your YouTube video repeat automatically right from the page. - No external link - No need for playlists - Repeat infinitely with just 1 click ----- v.0.0.4 ----- Fixed the extension to work with the new YouTube design from fall 2018 ----- v.0.0.3 ----- Fixed the icon to show inactive when on non-youtube pages. ----- v.0.0.2 ----- Fixed icon to show the repeat status when tabs are switched.
확장 프로그램 기본 정보
이름 | ![]() |
ID | lgffcdbnficjmckoidgcmcajeadoekgi |
공식 URL | https://chrome.google.com/webstore/detail/youtube-repeater/lgffcdbnficjmckoidgcmcajeadoekgi |
설명 | Repeats YouTube video after it ends. |
파일 크기 | 16.98 KB |
설치 횟수 | 423 |
현재 버전 | 0.0.4 |
최근 업데이트 | 2019-03-18 |
출시 날짜 | 2019-03-18 |
평점 | 3.50/5 총 4 개의 평점 |
개발자 | shogo |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://shogo.eu/ |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "YouTube Repeater", "description": "Repeats YouTube video after it ends.", "version": "0.0.4", "manifest_version": 2, "background": { "scripts": [ "eventPage.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "browser_action": { "default_icon": "icon.png" }, "permissions": [ "tabs", "notifications", "webNavigation" ] } |