ASMR filter for Youtube
Adds a button to quicly filter ASMR videos into or out of the Youtube website.
ASMR filter for Youtube란 무엇입니까?
ASMR filter for Youtube은(는) duri93에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a button to quicly filter ASMR videos into or out of the Youtube website."입니다.
확장 프로그램 스크린샷
ASMR filter for Youtube 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you use Youtube for both regular and ASMR videos? Are you tired of having ASMR videos mixed with the regular ones? If so, this extension is for you! "ASMR filter for Youtube" adds a new button near the Youtube logo. With it, you can quickly choose to hide either category of videos (ASMR or non-ASMR), instantly switching between regular, ASMR-free or ASMR-only versions of Youtube. It acts on: - homepage, explore, subscriptions pages - channel pages - correlated videos - the wall that appears at the end of each video - playlists and subscriptions on the leftside menu - playlist contents (in the "visualize playlist" page) ASMR content is identified by looking for the "ASMR" string, either in the video title or channel name. To my experience, this correctly identifies all elements.
확장 프로그램 기본 정보
이름 | ASMR filter for Youtube |
ID | ickdeonllbpdejpefgocidjbkbplmikd |
공식 URL | https://chromewebstore.google.com/detail/asmr-filter-for-youtube/ickdeonllbpdejpefgocidjbkbplmikd |
설명 | Adds a button to quicly filter ASMR videos into or out of the Youtube website. |
파일 크기 | 23.5 KB |
설치 횟수 | 132 |
현재 버전 | 1.00 |
최근 업데이트 | 2021-11-07 |
출시 날짜 | 2021-11-07 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | duri93 |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ASMR filter for Youtube", "description": "Adds a button to quicly filter ASMR videos into or out of the Youtube website.", "author": "duri93", "version": "1.00", "manifest_version": 3, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "run_at": "document_idle", "js": [ "button.js", "content.js" ], "css": [ "style.css" ] } ], "icons": { "16": "\/icons\/icon-16.png", "24": "\/icons\/icon-24.png", "32": "\/icons\/icon-32.png", "48": "\/icons\/icon-48.png", "128": "\/icons\/icon-128.png" } } |