Youtube-Replayer
Hope this help!
Youtube-Replayer란 무엇입니까?
Youtube-Replayer은(는) nhung.luke에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hope this help!"입니다.
확장 프로그램 스크린샷
Youtube-Replayer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Provide an easy way to replay a part of your favorite Youtube video, all you have to do are click A for setting the first point and click B for select the last point of the part you would like to repeat.
확장 프로그램 기본 정보
이름 | Youtube-Replayer |
ID | ikehalidojegddocmomcghlpkalignkj |
공식 URL | https://chrome.google.com/webstore/detail/youtube-replayer/ikehalidojegddocmomcghlpkalignkj |
설명 | Hope this help! |
파일 크기 | 180 KB |
설치 횟수 | 248 |
현재 버전 | 0.0.0.5 |
최근 업데이트 | 2021-09-21 |
출시 날짜 | 2017-05-06 |
평점 | 4.00/5 총 10 개의 평점 |
개발자 | nhung.luke |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Youtube-Replayer", "version": "0.0.0.5", "description": "Hope this help!", "background_page": "background.html", "icons": { "128": "images\/autoreplay-128.png", "64": "images\/autoreplay-64.png", "48": "images\/autoreplay-48.png", "32": "images\/autoreplay-32.png", "24": "images\/autoreplay-24.png", "18": "images\/autoreplay-18.png" }, "permissions": [ "declarativeContent" ], "content_scripts": [ { "run_at": "document_end", "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "css": [ "css\/content.css", "css\/checkbox.css", "css\/bootstrap.css" ], "js": [ "scripts\/jquery.js", "scripts\/bootstrap.js", "scripts\/content.js" ] } ], "page_action": { "default_icon": "images\/autoreplay-32.png", "default_popup": "html\/popup.html", "default_title": "Click here!" }, "background": { "scripts": [ "scripts\/background.js" ] } } |