AdBlocker for YouTube™
Prevent YouTube page, HTML5 player, and Flash player from displaying advertisements and banners
AdBlocker for YouTube™란 무엇입니까?
AdBlocker for YouTube™은(는) tlintspr에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Prevent YouTube page, HTML5 player, and Flash player from displaying advertisements and banners"입니다.
확장 프로그램 스크린샷
AdBlocker for YouTube™ 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This is a browser extension to remove banner and display ads from the YouTube website and embed advertisements from YouTube's HTML5 and Flash players. Please note that is not a general-purpose adblocker. This extension only removes advertisements on YouTube web pages. Compare to an AdBlocker, this extension is very lightweight in terms of memory and resource usage. If you have a slow computer and you would like to ads to be gone, use this extension. Technical notes: The observer of this extension only works when you have at least one YT web page. Also, it only has two regular expression rules to improve the performance and prevent the observer from slow down your browser (compare it with hundreds of rules a general-purpose adblocker needs to install to operate). Permissions Explained: Although this extension only works on YT pages, it still requires all "hostnames" permission. This is a must-have since the origin of the advertisement could vary by your location (localized hostnames).
확장 프로그램 기본 정보
이름 | AdBlocker for YouTube™ |
ID | kpjdlhnmjhjnbeigfilbaiklikbopbca |
공식 URL | https://chromewebstore.google.com/detail/adblocker-for-youtube/kpjdlhnmjhjnbeigfilbaiklikbopbca |
설명 | Prevent YouTube page, HTML5 player, and Flash player from displaying advertisements and banners |
파일 크기 | 99.87 KB |
설치 횟수 | 2,487 |
현재 버전 | 0.3.0 |
최근 업데이트 | 2021-09-14 |
출시 날짜 | 2018-12-08 |
평점 | 4.33/5 총 6 개의 평점 |
개발자 | tlintspr |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://add0n.com/youtube-tools.html |
도움말 페이지 URL | http://add0n.com/youtube-tools.html |
지원되는 언어 | de,en,fr,nl,da,et,it,hu,fi,cs,el,bg,zh-CN,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "AdBlocker for YouTube\u2122", "description": "__MSG_description__", "default_locale": "en", "version": "0.3.0", "manifest_version": 2, "permissions": [ "storage", "declarativeNetRequest" ], "declarative_net_request": { "rule_resources": [ { "id": "ruleset", "enabled": true, "path": "rules.json" } ] }, "background": { "service_worker": "worker.js" }, "browser_action": [], "content_scripts": [ { "all_frames": true, "run_at": "document_start", "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "data\/inject\/inject.js" ], "css": [ "data\/inject\/inject.css" ] } ], "homepage_url": "https:\/\/add0n.com\/youtube-tools.html?from=adblocker", "icons": { "16": "data\/icons\/16.png", "32": "data\/icons\/32.png", "48": "data\/icons\/48.png", "64": "data\/icons\/64.png", "128": "data\/icons\/128.png", "256": "data\/icons\/256.png", "512": "data\/icons\/512.png" } } |