Youtube Autoclose Ads
Automatically close ads on youtube videos after an amount of seconds.
Youtube Autoclose Ads란 무엇입니까?
Youtube Autoclose Ads은(는) Gabriel Duarte에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Automatically close ads on youtube videos after an amount of seconds."입니다.
확장 프로그램 스크린샷
Youtube Autoclose Ads 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Automatically close ads on youtube videos after an amount of seconds (default to 5 seconds). You can change the seconds on the settings page of the extension (chrome://extensions) But why not just use a normal ad-block? An ad-block completly removes all sorts of ads on youtube, making the video creator not get any money with monetization. This extension allow you to set a minimum time in which the ad will be displayed, and after that time, the ad will be closed automatically, allowing the content creator to get monetization on the video.
확장 프로그램 기본 정보
이름 | Youtube Autoclose Ads |
ID | mppjhhbajcciljocgbadbhbgphjfdmhj |
공식 URL | https://chromewebstore.google.com/detail/youtube-autoclose-ads/mppjhhbajcciljocgbadbhbgphjfdmhj |
설명 | Automatically close ads on youtube videos after an amount of seconds. |
파일 크기 | 722 KB |
설치 횟수 | 2,427 |
현재 버전 | 1.2.3 |
최근 업데이트 | 2022-07-12 |
출시 날짜 | 2019-02-10 |
평점 | 4.46/5 총 13 개의 평점 |
개발자 | Gabriel Duarte |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/GabrielDuarteM/youtube-autoclose-ads |
도움말 페이지 URL | https://github.com/GabrielDuarteM/youtube-autoclose-ads/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Youtube Autoclose Ads", "version": "1.2.3", "description": "Automatically close ads on youtube videos after an amount of seconds.", "author": "Gabriel Duarte", "homepage_url": "https:\/\/github.com\/GabrielDuarteM\/youtube-autoclose-ads", "permissions": [ "storage" ], "host_permissions": [ "*:\/\/*.youtube.com\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "youtube-autoclose-ads.js" ], "run_at": "document_start" } ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" }, "options_ui": { "page": "options.html" } } |