YouTube Word Searcher
An extension for searching for words in YouTube videos
YouTube Word Searcher란 무엇입니까?
YouTube Word Searcher은(는) Grondo에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An extension for searching for words in YouTube videos"입니다.
확장 프로그램 스크린샷
YouTube Word Searcher 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension can help you search for words in YouTube videos and jump directly to the respective timestamp in the video. A button will appear above YouTube videos, and if you click it, you will get access to a search input. There is an autosearch feature that enables you to set words to be searched on every page, which if found will trigger the extension to notify you (by changing the YWS button to green).
확장 프로그램 기본 정보
이름 | YouTube Word Searcher |
ID | jichoejagacnbcinlgncghhdegdlhbcj |
공식 URL | https://chromewebstore.google.com/detail/youtube-word-searcher/jichoejagacnbcinlgncghhdegdlhbcj |
설명 | An extension for searching for words in YouTube videos |
파일 크기 | 34.91 KB |
설치 횟수 | 1,250 |
현재 버전 | 1.4.0 |
최근 업데이트 | 2024-02-26 |
출시 날짜 | 2022-07-26 |
평점 | 4.60/5 총 10 개의 평점 |
개발자 | Grondo |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Word Searcher", "description": "An extension for searching for words in YouTube videos", "version": "1.4.0", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/content.js" ], "run_at": "document_end" } ], "icons": { "16": "assets\/16.png", "32": "assets\/32.png", "48": "assets\/48.png", "128": "assets\/128.png" }, "web_accessible_resources": [ { "resources": [ "js\/dom-script.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self';" } } |