YouTube Word Searcher

An extension for searching for words in YouTube videos

YouTube Word Searcher क्या है?

YouTube Word Searcher Grondo द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension for searching for words in YouTube videos"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में YouTube Word Searcher एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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';"
    }
}