Subscene Filter
The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles.
Qu'est-ce que Subscene Filter ?
Subscene Filter est une extension Chrome développée par Dan Dao, et sa fonction principale est "The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Subscene Filter
Téléchargez les fichiers d'extension Subscene Filter 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
The Subscene Filter extension enhances the user experience on the Subscene website by allowing users to choose their preferred language for subtitles and hide neutral subtitles. Users can select their preferred language from a drop-down list, and the extension will automatically display subtitles in that language. Additionally, users can hide subtitles that are not translated or are in the same language as the audio. The Subscene Filter extension is a helpful tool for anyone who frequently uses the Subscene website to download and upload subtitles, as it allows users to customize their subtitles and filter out unwanted ones.
Informations de Base sur l'Extension
Nom | Subscene Filter |
ID | nklnmofaobhhdhbelhkkdohgjeekambg |
URL Officiel | https://chromewebstore.google.com/detail/subscene-filter/nklnmofaobhhdhbelhkkdohgjeekambg |
Description | The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles. |
Taille du Fichier | 376 KB |
Nombre d'Installations | 83 |
Version Actuelle | 1.0.2 |
Dernière Mise à Jour | 2023-02-22 |
Date de Publication | 2023-02-22 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Dan Dao |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Subscene Filter", "description": "The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles.", "version": "1.0.2", "background": { "service_worker": "\/background.js" }, "permissions": [ "storage" ], "action": { "default_icon": "icon\/icon-32.png", "default_popup": "popup.html" }, "icons": { "16": "icon\/icon-16.png", "32": "icon\/icon-32.png", "48": "icon\/icon-48.png", "128": "icon\/icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/subscene.com\/*" ], "run_at": "document_end", "css": [ "css\/site.css" ], "js": [ "\/content.js" ] } ] } |