Simple YouTube Loop
Simple, clean way to loop a YouTube video.
Simple YouTube Loop란 무엇입니까?
Simple YouTube Loop은(는) mihelcic에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simple, clean way to loop a YouTube video."입니다.
확장 프로그램 스크린샷
Simple YouTube Loop 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension provides a simple YouTube loop button, on your HTML5 video controls bar. Nothing more.
확장 프로그램 기본 정보
이름 | Simple YouTube Loop |
ID | bfhmecnhdehblbnadegfpbmmbbobkjff |
공식 URL | https://chromewebstore.google.com/detail/simple-youtube-loop/bfhmecnhdehblbnadegfpbmmbbobkjff |
설명 | Simple, clean way to loop a YouTube video. |
파일 크기 | 39.23 KB |
설치 횟수 | 1,172 |
현재 버전 | 0.6 |
최근 업데이트 | 2017-09-07 |
출시 날짜 | 2017-09-07 |
평점 | 4.58/5 총 26 개의 평점 |
개발자 | mihelcic |
결제 유형 | free |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple YouTube Loop", "short_name": "YouTube Loop", "description": "Simple, clean way to loop a YouTube video.", "version": "0.6", "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*" ], "js": [ "js\/jq.js", "js\/content.js" ] } ], "icons": { "19": "images\/icon_19.png", "38": "images\/icon_38.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "background": { "persistent": false, "scripts": [ "js\/bg.js" ] }, "page_action": { "default_icon": { "19": "images\/icon_19.png", "38": "images\/icon_38.png", "48": "images\/icon_48.png", "128": "images\/icon_128.png" }, "default_title": "Simple YouTube Loop" }, "permissions": [ "tabs" ] } |