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ファイルをダウンロード
YouTube Word Searcher拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 |
Eメール | [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';" } } |