MoST Subtitles
Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…
Qu'est-ce que MoST Subtitles ?
MoST Subtitles est une extension Chrome développée par Joel Sjögren, et sa fonction principale est "Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension MoST Subtitles
Téléchargez les fichiers d'extension MoST Subtitles au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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!
Informations de Base sur l'Extension
Nom | MoST Subtitles |
ID | kjmhinhfpooeamgbjkcmjfdedlahnkhk |
URL Officiel | https://chromewebstore.google.com/detail/most-subtitles/kjmhinhfpooeamgbjkcmjfdedlahnkhk |
Description | Unofficial chrome extension for showing more subtitles at viki.com. The code is largely inspired by chrome-subtitles and subber,… |
Taille du Fichier | 301 KB |
Nombre d'Installations | 703 |
Version Actuelle | 0.8.6 |
Dernière Mise à Jour | 2024-02-05 |
Date de Publication | 2018-01-27 |
Évaluation | 3.20/5 Total 5 Évaluations |
Développeur | Joel Sjögren |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/JoelSjogren/most |
URL de la Page d'Aide | https://github.com/JoelSjogren/most/issues |
Langues Prises en Charge | 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" ] } |