YouTube Word Searcher

An extension for searching for words in YouTube videos

YouTube Word Searcherคืออะไร?

YouTube Word Searcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Grondo และคุณลักษณะหลักของมันคือ "An extension for searching for words in YouTube videos"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Word Searcher

ดาวน์โหลดไฟล์ส่วนขยาย 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';"
    }
}