YouTube subtitles viewer
An extension to view, copy and search subtitles on YouTube, with every language
Τι είναι το YouTube subtitles viewer;
Το YouTube subtitles viewer είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Elia Scotto, και η κύρια λειτουργία του είναι "An extension to view, copy and search subtitles on YouTube, with every language".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης YouTube subtitles viewer
Λήψη αρχείων επέκτασης YouTube subtitles viewer σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
With this Chrome extension created for YouTube, you can view, copy and search subtitles for every video (if available). Just open a video and click on the icon or press (Ctrl/Command+Shift+K) and the popup window will appear. You could easily select the languages for the subtitles, select and copy all the text or navigate the video using the time links presented on the left. The interface uses the new dark YouTube theme. QUICK START: 1. Open a YouTube video 2. Click on the icon or use the shortcuts Shortcuts: Win: Ctrl+Shift+K Mac: Command+Shift+K
Βασικές Πληροφορίες Επέκτασης
Όνομα | YouTube subtitles viewer |
ID | ljblecifcbmcdjbabhimddlladlkfdfg |
Επίσημο URL | https://chromewebstore.google.com/detail/youtube-subtitles-viewer/ljblecifcbmcdjbabhimddlladlkfdfg |
Περιγραφή | An extension to view, copy and search subtitles on YouTube, with every language |
Μέγεθος Αρχείου | 98.48 KB |
Αριθμός Εγκαταστάσεων | 3,534 |
Τρέχουσα Έκδοση | 1.1.0 |
Τελευταία Ενημέρωση | 2020-09-22 |
Ημερομηνία Δημοσίευσης | 2020-09-21 |
Αξιολόγηση | 4.40/5 Συνολικά 10 Αξιολογήσεις |
Προγραμματιστής | Elia Scotto |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/elias94/youtube-subtitles-viewer |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "An extension to view, copy and search subtitles on YouTube, with every language", "version": "1.1.0", "name": "YouTube subtitles viewer", "background": { "page": "background.html", "persistent": false }, "page_action": { "default_popup": "popup.html", "default_title": "Youtube subtitles viewer" }, "permissions": [ "tabs", "storage", "declarativeContent" ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png", "256": "icon256.png" }, "content_scripts": [ { "matches": [ "*:\/\/www.youtube.com\/*", "*:\/\/youtube.com\/*" ], "js": [ "contentScript.bundle.js" ] } ], "commands": { "_execute_page_action": { "suggested_key": { "default": "Ctrl+Shift+K", "mac": "Command+Shift+K" } } }, "web_accessible_resources": [ "content.styles.css", "icon254.png", "icon128.png", "icon48.png", "icon16.png" ], "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |