Subscene Filter
The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles.
Τι είναι το Subscene Filter;
Το Subscene Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dan Dao, και η κύρια λειτουργία του είναι "The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Subscene Filter
Λήψη αρχείων επέκτασης Subscene Filter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Subscene Filter |
ID | nklnmofaobhhdhbelhkkdohgjeekambg |
Επίσημο URL | https://chromewebstore.google.com/detail/subscene-filter/nklnmofaobhhdhbelhkkdohgjeekambg |
Περιγραφή | The extension improves user experience on the Subscene. Users can choose their preferred language and hide neutral subtitles. |
Μέγεθος Αρχείου | 376 KB |
Αριθμός Εγκαταστάσεων | 83 |
Τρέχουσα Έκδοση | 1.0.2 |
Τελευταία Ενημέρωση | 2023-02-22 |
Ημερομηνία Δημοσίευσης | 2023-02-22 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Dan Dao |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |