No Spoilers
Hide all spoiler content from youtube.
No Spoilers란 무엇입니까?
No Spoilers은(는) grayhathacks10에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Hide all spoiler content from youtube."입니다.
확장 프로그램 스크린샷
No Spoilers 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension lets you add keywords based on which it blurs video cards from youtube. This helps you avoid spoilers and enjoy your youtube experience. You can still choose to watch the blurred video by changing toogling it's visibility.
확장 프로그램 기본 정보
이름 | No Spoilers |
ID | kfbhhaallccnekmpojknfjblchllocgb |
공식 URL | https://chromewebstore.google.com/detail/no-spoilers/kfbhhaallccnekmpojknfjblchllocgb |
설명 | Hide all spoiler content from youtube. |
파일 크기 | 27.09 KB |
설치 횟수 | 105 |
현재 버전 | 1.0.2 |
최근 업데이트 | 2022-05-12 |
출시 날짜 | 2022-05-09 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | grayhathacks10 |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/GrayHat12/no-spoilers |
도움말 페이지 URL | https://github.com/GrayHat12/no-spoilers |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "No Spoilers", "offline_enabled": true, "description": "Hide all spoiler content from youtube.", "action": { "default_title": "No Spoilers", "default_popup": ".\/html\/popup.html" }, "version": "1.0.2", "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ ".\/js\/youtube.js" ] } ], "background": { "service_worker": ".\/js\/background.js" }, "permissions": [ "storage" ], "icons": { "16": ".\/assets\/icon16.png", "48": ".\/assets\/icon48.png", "128": ".\/assets\/icon128.png" } } |