Search for YouTube Player

Add search functionality to the YouTube video player for videos with closed captions

Τι είναι το Search for YouTube Player;

Το Search for YouTube Player είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον jared.schwalbe, και η κύρια λειτουργία του είναι "Add search functionality to the YouTube video player for videos with closed captions".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Search for YouTube Player

Λήψη αρχείων επέκτασης Search for YouTube Player σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Ever wanted to ctrl-f (or cmd-f) a YouTube video? Looking for that one clip in a 2 hour podcast? Don't want to listen to that entire lecture your professor posted? Well you're in luck!

If any YouTube video has closed captions enabled, this extension will add a search button to the video player so that you can search the transcript and navigate to each timestamp in the video where your query is spoken. This extension strives to feel as native as possible, as if it were a feature built right into YouTube.

- It will not seek to the exact moment your query is spoken, but instead it seeks to the timestamp where the caption would appear on screen.
- Use ENTER to seek to the next occurrence in the video and the LEFT/RIGHT arrow keys to cycle between previous and next.
- Limited to videos where closed captions are available.
- Limited to youtube.com (will not work on embedded videos).

*** After installing, refresh any tabs that are running YouTube.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Search for YouTube Player Search for YouTube Player
ID mbhogigjpbknpdogfkenmgijelgjjcod
Επίσημο URL https://chromewebstore.google.com/detail/search-for-youtube-player/mbhogigjpbknpdogfkenmgijelgjjcod
Περιγραφή Add search functionality to the YouTube video player for videos with closed captions
Μέγεθος Αρχείου 99.3 KB
Αριθμός Εγκαταστάσεων 295
Τρέχουσα Έκδοση 2.0.0
Τελευταία Ενημέρωση 2022-04-12
Ημερομηνία Δημοσίευσης 2017-03-09
Αξιολόγηση 4.86/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής jared.schwalbe
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/jared-schwalbe/search-for-youtube-player/issues
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Search for YouTube Player",
    "version": "2.0.0",
    "description": "Add search functionality to the YouTube video player for videos with closed captions",
    "author": "Jared Schwalbe",
    "icons": {
        "16": "img\/icon_16.png",
        "48": "img\/icon_48.png",
        "128": "img\/icon_128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "import-app.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "resources": [
                "html\/searchButton.html",
                "html\/searchMenu.html"
            ]
        },
        {
            "resources": [
                "chunks\/*-*.js",
                "app.js"
            ],
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ]
        }
    ]
}