Subtitle Searcher & Downloader for Youtube

Downloads and stores subtitles automatically when you are watching a youtube video. in order to provide subtitles search.

Τι είναι το Subtitle Searcher & Downloader for Youtube;

Το Subtitle Searcher & Downloader for Youtube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον autosubtitle.service, και η κύρια λειτουργία του είναι "Downloads and stores subtitles automatically when you are watching a youtube video. in order to provide subtitles search.".

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

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Subtitle Searcher & Downloader for Youtube

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

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

                        Search for words in the subtitles(closed captions) across many YouTube videos.

After the extension is installed. When you watch YouTube videos on your browser, it will download the subtitles of the videos automatically. And save the subtitles to your browser's local storage.

When you want to search subtitle with keywords:
1.Click the Puzzle piece icon on the right side of your browser's address bar. Pin this extension.
2.Click the extension icon to open the search page.
3.Enter keywords in the search box, click the search button.

On the search results page:
1.Click on the language button to download the subtitle file.
2.Click on time code to open a new tab and start playing the video from the specified time.
3.Click on text content to playing video from the specified time on search result card.

Caution:
When the hard-disk space is insufficient , the browser may automatically erase all downloaded subtitle data.                    

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

Όνομα Subtitle Searcher & Downloader for Youtube Subtitle Searcher & Downloader for Youtube
ID naeaaojjjnjpoikhkmmaaokofhlegcba
Επίσημο URL https://chrome.google.com/webstore/detail/subtitle-searcher-downloa/naeaaojjjnjpoikhkmmaaokofhlegcba
Περιγραφή Downloads and stores subtitles automatically when you are watching a youtube video. in order to provide subtitles search.
Μέγεθος Αρχείου 644 KB
Αριθμός Εγκαταστάσεων 332
Τρέχουσα Έκδοση 0.0.2
Τελευταία Ενημέρωση 2022-03-16
Ημερομηνία Δημοσίευσης 2022-03-07
Αξιολόγηση 5.00/5 Συνολικά 3 Αξιολογήσεις
Προγραμματιστής autosubtitle.service
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Subtitle Searcher & Downloader for Youtube",
    "description": "Downloads and stores subtitles automatically when you are watching a youtube video. in order to provide subtitles search.",
    "version": "0.0.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "icons\/close16.png",
            "24": "icons\/close24.png",
            "32": "icons\/close32.png",
            "48": "icons\/close48.png",
            "64": "icons\/close64.png"
        },
        "default_title": "Search Youtube videos"
    },
    "icons": {
        "16": "icons\/close16.png",
        "24": "icons\/close24.png",
        "32": "icons\/close32.png",
        "48": "icons\/close48.png",
        "64": "icons\/close64.png"
    },
    "author": "[email protected]",
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+S",
                "mac": "Command+Shift+S"
            },
            "description": "This extension downloads and saves the subtitles of a Youtube video when you watch it, in order to provide a subtitle search function"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "third-party\/js\/patch-worker.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube-nocookie.com\/*"
            ]
        }
    ],
    "minimum_chrome_version": "88",
    "web_accessible_resources": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*",
                "https:\/\/www.youtube-nocookie.com\/*"
            ],
            "resources": [
                "*.js",
                "*.css",
                "*.html",
                "icons\/*.png",
                "images\/*.png",
                "third-party\/js\/*.js",
                "third-party\/css\/*.css"
            ]
        }
    ]
}