YouTube Word Searcher
An extension for searching for words in YouTube videos
YouTube Word Searcher là gì?
YouTube Word Searcher là một tiện ích mở rộng Chrome được phát triển bởi Grondo, và tính năng chính của nó là "An extension for searching for words in YouTube videos".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng YouTube Word Searcher
Tải xuống các tệp mở rộng YouTube Word Searcher dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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).
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Word Searcher |
ID | jichoejagacnbcinlgncghhdegdlhbcj |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-word-searcher/jichoejagacnbcinlgncghhdegdlhbcj |
Mô tả | An extension for searching for words in YouTube videos |
Kích Thước Tệp | 34.91 KB |
Số Lần Cài Đặt | 1,250 |
Phiên Bản Hiện Tại | 1.4.0 |
Cập Nhật Lần Cuối | 2024-02-26 |
Ngày Phát Hành | 2022-07-26 |
Đánh Giá | 4.60/5 Tổng số 10 Đánh Giá |
Nhà Phát Triển | Grondo |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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';" } } |