Ad Accelerator
Detects if a video ad is playing, mutes the video and dramatically increases speed.
Ad Accelerator란 무엇입니까?
Ad Accelerator은(는) rkarpinski에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Detects if a video ad is playing, mutes the video and dramatically increases speed."입니다.
확장 프로그램 스크린샷
Ad Accelerator 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Skip through annoying advertisements instantly on sites like Youtube & Hulu. * Automatically utilize skip ad button * Automatically mute ads * Automatically increases ad speed to the maximum allowed speed Skip through ads with Ad Accelerator and spend more time watching videos. Completely free and open sourced on github!! Support us by leaving a review or by contributing a pull request.
확장 프로그램 기본 정보
이름 | Ad Accelerator |
ID | gpboiedfklodfhngobidfjecdpmccehg |
공식 URL | https://chromewebstore.google.com/detail/ad-accelerator/gpboiedfklodfhngobidfjecdpmccehg |
설명 | Detects if a video ad is playing, mutes the video and dramatically increases speed. |
파일 크기 | 472 KB |
설치 횟수 | 10,000 |
현재 버전 | 0.0.0.4 |
최근 업데이트 | 2024-03-06 |
출시 날짜 | 2023-11-15 |
평점 | 4.46/5 총 69 개의 평점 |
개발자 | rkarpinski |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://github.com/rkk3/ad-accelerator |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Ad Accelerator", "version": "0.0.0.4", "description": "Detects if a video ad is playing, mutes the video and dramatically increases speed.", "permissions": [ "webNavigation", "scripting" ], "host_permissions": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*", "*:\/\/www.hulu.com\/watch\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "assets\/images\/icon16.png", "32": "assets\/images\/icon32.png", "48": "assets\/images\/icon48.png", "128": "assets\/images\/icon128.png" } } |