Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
Auto Replay YouTube™ Videos란 무엇입니까?
Auto Replay YouTube™ Videos은(는) https://opensourceforgeeks.blogspot.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Auto replay your favorite youtube videos in a loop with zero clicks!"입니다.
확장 프로그램 스크린샷
Auto Replay YouTube™ Videos 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
* Replay your favorite youtube videos automatically with 0 clicks. * Optional settings to turn off the auto looping behavior in a single click. * Easy to use extension with visibility limited to youtube only. * Auto play setting is changed based on looping status.
확장 프로그램 기본 정보
이름 | Auto Replay YouTube™ Videos |
ID | mepicphbpehnpdkmnphaepbglimkeedp |
공식 URL | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
설명 | Auto replay your favorite youtube videos in a loop with zero clicks! |
파일 크기 | 72.76 KB |
설치 횟수 | 682 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2018-02-28 |
출시 날짜 | 2018-02-27 |
평점 | 4.43/5 총 7 개의 평점 |
개발자 | https://opensourceforgeeks.blogspot.com |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Replay YouTube\u2122 Videos", "version": "0.0.3", "manifest_version": 2, "description": "Auto replay your favorite youtube videos in a loop with zero clicks!", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "page_action": { "default_icon": "icon-19.png", "default_title": "Toggle YouTube replay" }, "background": { "scripts": [ "jquery-1.7.1.min.js", "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "activeTab", "notifications" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery-1.7.1.min.js", "waitForKeyElements.js", "contentscript.js" ], "run_at": "document_end", "all_frames": true } ] } |