Crunchyroll Thumbnail Remover
Remove thumbnails to avoid spoilers.
Was ist Crunchyroll Thumbnail Remover?
Crunchyroll Thumbnail Remover ist eine Chrome-Erweiterung, die von Treuz entwickelt wurde, und ihr Hauptmerkmal ist "Remove thumbnails to avoid spoilers.".
Erweiterungsscreenshots
Crunchyroll Thumbnail Remover-Erweiterungs-CRX-Datei herunterladen
Laden Sie Crunchyroll Thumbnail Remover-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Crunchyroll Thumbnail Remover |
ID | ieeahbkdhednhjpcjdobahgabdndjmcn |
Offizielle URL | https://chromewebstore.google.com/detail/crunchyroll-thumbnail-rem/ieeahbkdhednhjpcjdobahgabdndjmcn |
Beschreibung | Remove thumbnails to avoid spoilers. |
Dateigröße | 16.12 KB |
Installationsanzahl | 189 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-01-20 |
Veröffentlichungsdatum | 2023-01-20 |
Bewertung | 5.00/5 Insgesamt 5 Bewertungen |
Entwickler | Treuz |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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\/*" ] } |