CrunchyRoll Theater Mode
A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface
什么是CrunchyRoll Theater Mode?
CrunchyRoll Theater Mode是由johnuberbacher开发的Chrome扩展程序,该扩展的主要功能是“A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface”。
扩展截图
下载CrunchyRoll Theater Mode扩展crx文件
下载CrunchyRoll Theater Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Ever found the default video size on CrunchyRoll just too narrow? This extension increases the size of CrunchyRoll Videos, similarly to the size of YouTube' Theater Mode, allowing for a much better viewing experience! New Update allows for responsive screen sizes up to 1400px
扩展基本信息
名称 | |
ID | fccfjcklfpanhmcgbpcmpjhgindhmlbp |
官方URL | https://chrome.google.com/webstore/detail/crunchyroll-theater-mode/fccfjcklfpanhmcgbpcmpjhgindhmlbp |
简介 | A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface |
文件大小 | 28.98 KB |
安装次数 | 1,386 |
当前版本 | 0.0.7 |
更新时间 | 2019-11-23 |
上架时间 | 2019-11-23 |
评分 | 4.25/5 共12次评分 |
开发者 | johnuberbacher |
付费类型 | free |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CrunchyRoll Theater Mode", "version": "0.0.7", "description": "A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface", "icons": { "16": "images\/icon-32.png", "48": "images\/icon-64.png", "128": "images\/icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "https:\/\/www.crunchyroll.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/www.crunchyroll.com\/*" ], "css": [ "style.css" ], "js": [ "background.js" ], "run_at": "document_idle" } ] } |