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”。

扩展截图

screenshot

下载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 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';"
    }
}