floatplane-cinema-mode
Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…
Что такое floatplane-cinema-mode?
floatplane-cinema-mode - это расширение Chrome, разработанное boz.black, и его основная функция - "Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the…".
Снимки экрана расширения
Скачать файл CRX расширения floatplane-cinema-mode
Скачайте файлы расширений floatplane-cinema-mode в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the max-width of the video player container to 1920px so that 1080p video is displayed at full resolution. Preference is stored in local storage. I may update this to also apply a semi-opaque layer to the rest of the page for a more immersive viewing experience.
Основная информация о расширении
Название | floatplane-cinema-mode |
ID | illocnfoncohhonnhlpdjafenjndaclo |
Официальный URL | https://chromewebstore.google.com/detail/floatplane-cinema-mode/illocnfoncohhonnhlpdjafenjndaclo |
Описание | Increase video player size on floatplane.com similar to YouTube cinema mode. All this is doing currently is increasing the… |
Размер файла | 27.89 KB |
Количество установок | 30 |
Текущая Версия | 0.2 |
Последнее Обновление | 2019-10-08 |
Дата публикации | 2019-10-08 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | boz.black |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/mr-black-8/floatplane-cinema-mode |
URL страницы помощи | https://github.com/mr-black-8/floatplane-cinema-mode |
Поддерживаемые языки | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "floatplane-cinema-mode", "version": "0.2", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "http:\/\/www.floatplane.com\/*", "https:\/\/www.floatplane.com\/*" ], "css": [ "fpcm-style.css" ], "js": [ "jquery.js", "content.js" ] } ] } |