Crunchyroll Thumbnail Remover
Remove thumbnails to avoid spoilers.
Τι είναι το Crunchyroll Thumbnail Remover;
Το Crunchyroll Thumbnail Remover είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Treuz, και η κύρια λειτουργία του είναι "Remove thumbnails to avoid spoilers.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Crunchyroll Thumbnail Remover
Λήψη αρχείων επέκτασης Crunchyroll Thumbnail Remover σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
Crunchyroll Thumbnail Remover is a Chrome extension that removes thumbnails from the Crunchyroll website to help prevent spoilers. It is a simple tool that allows users to enjoy their favorite anime without the fear of accidentally seeing a spoiler. Once installed, the extension automatically hides all thumbnails on Crunchyroll, giving users a clean and spoiler-free browsing experience. This extension is perfect for anime fans who want to watch their favorite shows without any spoilers or surprises.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Crunchyroll Thumbnail Remover |
ID | ieeahbkdhednhjpcjdobahgabdndjmcn |
Επίσημο URL | https://chromewebstore.google.com/detail/crunchyroll-thumbnail-rem/ieeahbkdhednhjpcjdobahgabdndjmcn |
Περιγραφή | Remove thumbnails to avoid spoilers. |
Μέγεθος Αρχείου | 16.12 KB |
Αριθμός Εγκαταστάσεων | 189 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2023-01-20 |
Ημερομηνία Δημοσίευσης | 2023-01-20 |
Αξιολόγηση | 5.00/5 Συνολικά 5 Αξιολογήσεις |
Προγραμματιστής | Treuz |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Crunchyroll Thumbnail Remover", "description": "Remove thumbnails to avoid spoilers.", "version": "1.0", "manifest_version": 3, "permissions": [], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*" ], "css": [ "my-styles.css" ] } ], "action": { "default_title": "Crunchyroll Thumbnail Remover", "default_popup": "popup.html" }, "icons": { "16": ".\/images\/icon-16.png", "32": ".\/images\/icon-32.png", "36": ".\/images\/icon-36.png", "48": ".\/images\/icon-48.png", "128": ".\/images\/icon-128.png" }, "host_permissions": [ "https:\/\/www.crunchyroll.com\/*" ] } |