YouTube Ad Controller
Fast forward and rewind YouTube ads using your arrow keys!
YouTube Ad Controller란 무엇입니까?
YouTube Ad Controller은(는) Briann에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fast forward and rewind YouTube ads using your arrow keys!"입니다.
확장 프로그램 스크린샷
YouTube Ad Controller 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Have you ever wanted to re-watch an ad, or skip it? YouTube Ad Controller lets you fast forward and rewind YouTube video ads with your arrow keys, just like on any video!
확장 프로그램 기본 정보
이름 | |
ID | fmklhcikkdkambjpmmpdiaihncopfhlg |
공식 URL | https://chromewebstore.google.com/detail/youtube-ad-controller/fmklhcikkdkambjpmmpdiaihncopfhlg |
설명 | Fast forward and rewind YouTube ads using your arrow keys! |
파일 크기 | 10.76 KB |
설치 횟수 | 191 |
현재 버전 | 1.0 |
최근 업데이트 | 2022-07-19 |
출시 날짜 | 2022-07-18 |
평점 | 3.00/5 총 1 개의 평점 |
개발자 | Briann |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://extensions.brianwalczak.com |
도움말 페이지 URL | https://www.brianwalczak.com |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Ad Controller", "description": "Fast forward and rewind YouTube ads using your arrow keys!", "version": "1.0", "author": "ComplexxBrian", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "keyPress.js" ] } ], "icons": { "128": "icon-128.png", "16": "icon-small.png", "48": "icon-48.png" }, "action": { "default_popup": "popup.html", "default_title": "Ad Controller", "default_icon": "icon-small.png" } } |