Crunchyroll Thumbnail Remover
Remove thumbnails to avoid spoilers.
什么是Crunchyroll Thumbnail Remover?
Crunchyroll Thumbnail Remover是由Treuz开发的Chrome扩展程序,该扩展的主要功能是“Remove thumbnails to avoid spoilers.”。
扩展截图
下载Crunchyroll Thumbnail Remover扩展crx文件
下载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\/*" ] } |