OnDemand Korea Subtitle Toggle
Customizable Keyboard Shortcut to Toggle English subtitles on ODK
Τι είναι το OnDemand Korea Subtitle Toggle;
Το OnDemand Korea Subtitle Toggle είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον dc315, και η κύρια λειτουργία του είναι "Customizable Keyboard Shortcut to Toggle English subtitles on ODK".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης OnDemand Korea Subtitle Toggle
Λήψη αρχείων επέκτασης OnDemand Korea Subtitle Toggle σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
For those trying to learn Korean, ODK Subtitle toggle is for you. This chrome extension allows you to create a custom shortcut key for toggling subtitles on and off on the OnDemandKorea website. A subtitle toggle allows you to easily turn on subtitles when you don't understand a portion and turn off when you want to practice. To change the custom shortcut key, simply press the extension icon in the top right corner, and input the key you would like to make the shortcut key. *IMPORTANT* Page must be refreshed every time key is updated.
Βασικές Πληροφορίες Επέκτασης
Όνομα | |
ID | pkpkndeemifdfocodpccfcpfjacdkpmb |
Επίσημο URL | https://chromewebstore.google.com/detail/ondemand-korea-subtitle-t/pkpkndeemifdfocodpccfcpfjacdkpmb |
Περιγραφή | Customizable Keyboard Shortcut to Toggle English subtitles on ODK |
Μέγεθος Αρχείου | 25.83 KB |
Αριθμός Εγκαταστάσεων | 534 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2019-06-24 |
Ημερομηνία Δημοσίευσης | 2019-06-23 |
Αξιολόγηση | 4.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | dc315 |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "OnDemand Korea Subtitle Toggle", "version": "1.0", "short_name": "ODK", "description": "Customizable Keyboard Shortcut to Toggle English subtitles on ODK", "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/www.ondemandkorea.com\/*" ] } ], "web_accessible_resources": [ "injectscript.js" ], "externally_connectable": { "matches": [ "https:\/\/www.ondemandkorea.com\/*" ] }, "background": { "scripts": [ "keylistener.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_popup": "settings.html", "default_title": "ODK Subtitle Toggle" }, "permissions": [ "storage" ] } |