YouTube Word Searcher

An extension for searching for words in YouTube videos

Qu'est-ce que YouTube Word Searcher ?

YouTube Word Searcher est une extension Chrome développée par Grondo, et sa fonction principale est "An extension for searching for words in YouTube videos".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension YouTube Word Searcher

Téléchargez les fichiers d'extension YouTube Word Searcher au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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).                    

Informations de Base sur l'Extension

Nom YouTube Word Searcher YouTube Word Searcher
ID jichoejagacnbcinlgncghhdegdlhbcj
URL Officiel https://chromewebstore.google.com/detail/youtube-word-searcher/jichoejagacnbcinlgncghhdegdlhbcj
Description An extension for searching for words in YouTube videos
Taille du Fichier 34.91 KB
Nombre d'Installations 1,250
Version Actuelle 1.4.0
Dernière Mise à Jour 2024-02-26
Date de Publication 2022-07-26
Évaluation 4.60/5 Total 10 Évaluations
Développeur Grondo
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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';"
    }
}