CrunchyRoll Theater Mode
A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface
Co to jest CrunchyRoll Theater Mode?
CrunchyRoll Theater Mode to rozszerzenie Chrome opracowane przez johnuberbacher, a jego główną funkcją jest „A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia CrunchyRoll Theater Mode
Pobierz pliki rozszerzeń CrunchyRoll Theater Mode w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | fccfjcklfpanhmcgbpcmpjhgindhmlbp |
Oficjalny URL | https://chrome.google.com/webstore/detail/crunchyroll-theater-mode/fccfjcklfpanhmcgbpcmpjhgindhmlbp |
Opis | A Chrome Extension that adds a Theater mode-like experience to CrunchyRoll's Web Interface |
Rozmiar pliku | 28.98 KB |
Liczba instalacji | 1,386 |
Aktualna Wersja | 0.0.7 |
Ostatnia Aktualizacja | 2019-11-23 |
Data Publikacji | 2019-11-23 |
Ocena | 4.25/5 Łącznie 12 Oceny |
Deweloper | johnuberbacher |
Typ Płatności | free |
Obsługiwane Języki | 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" } ] } |