MoST Subtitles
Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…
Τι είναι το MoST Subtitles;
Το MoST Subtitles είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Joel Sjögren, και η κύρια λειτουργία του είναι "Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MoST Subtitles
Λήψη αρχείων επέκτασης MoST Subtitles σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber, but more minimal and targeted toward use at viki.com. It is commented and open-source, too. More most-like. In early versions, only Korean was supported, but it is now possible to view as many languages as you want! In the options page, simply add more blocks, for example `.most-de { bottom: -100px; height: 100px; }` for German subtitles just below the player. Visit https://github.com/JoelSjogren/most to fork, contribute, report bugs and request features!
Βασικές Πληροφορίες Επέκτασης
Όνομα | MoST Subtitles |
ID | kjmhinhfpooeamgbjkcmjfdedlahnkhk |
Επίσημο URL | https://chromewebstore.google.com/detail/most-subtitles/kjmhinhfpooeamgbjkcmjfdedlahnkhk |
Περιγραφή | Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,… |
Μέγεθος Αρχείου | 301 KB |
Αριθμός Εγκαταστάσεων | 703 |
Τρέχουσα Έκδοση | 0.8.6 |
Τελευταία Ενημέρωση | 2024-02-05 |
Ημερομηνία Δημοσίευσης | 2018-01-27 |
Αξιολόγηση | 3.20/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Joel Sjögren |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/JoelSjogren/most |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/JoelSjogren/most/issues |
Υποστηριζόμενες Γλώσσες | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "MoST Subtitles", "version": "0.8.6", "permissions": [ "storage" ], "browser_action": { "default_title": "MoST Subtitles", "default_icon": "icon16.png" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2, "background": { "scripts": [ "options_load.js", "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/www.viki.com\/*", "http:\/\/www.viki.com\/*", "https:\/\/subber.viki.com\/*", "http:\/\/subber.viki.com\/*" ], "js": [ "zepto.js", "overlay.js" ], "run_at": "document_end" } ], "options_page": "options.html", "web_accessible_resources": [ "options_default.css" ] } |