CrunchyRoll Theater Mode
A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface
Что такое CrunchyRoll Theater Mode?
CrunchyRoll Theater Mode - это расширение Chrome, разработанное johnuberbacher, и его основная функция - "A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface".
Снимки экрана расширения
Скачать файл CRX расширения CrunchyRoll Theater Mode
Скачайте файлы расширений 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" } ] } |