Automatic Fullscreen on Crunchyroll

Click on the switch buttom, press F11 and stay in your bed ;)

Что такое Automatic Fullscreen on Crunchyroll?

Automatic Fullscreen on Crunchyroll - это расширение Chrome, разработанное Unknown, и его основная функция - "Click on the switch buttom, press F11 and stay in your bed ;)".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Automatic Fullscreen on Crunchyroll

Скачайте файлы расширений Automatic Fullscreen on Crunchyroll в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension automatically makes the crunchyroll video-player fullscreen when you open the page.

Github: https://github.com/Coystark/automatic-fullscreen-crunchyroll                    

Основная информация о расширении

Название Automatic Fullscreen on Crunchyroll Automatic Fullscreen on Crunchyroll
ID pcbinggjelhcbebilcmlikomcgiippjb
Официальный URL https://chromewebstore.google.com/detail/automatic-fullscreen-on-c/pcbinggjelhcbebilcmlikomcgiippjb
Описание Click on the switch buttom, press F11 and stay in your bed ;)
Размер файла 17.22 KB
Количество установок 365
Текущая Версия 0.3
Последнее Обновление 2020-04-12
Дата публикации 2020-04-12
Рейтинг 5.00/5 Всего 1 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/Coystark/automatic-fullscreen-crunchyroll
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Automatic Fullscreen on Crunchyroll",
    "version": "0.3",
    "description": "Click on the switch buttom, press F11 and stay in your bed ;)",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.crunchyroll.com\/*\/*",
                "http:\/\/www.crunchyroll.com\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistant": false
    },
    "browser_action": {
        "default_title": "Automatic Fullscreen on Crunchyroll",
        "default_popup": "popup.html",
        "default_icon": "icons\/icon_disabled_16.png"
    },
    "icons": {
        "16": "icons\/icon_16.png",
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png"
    }
}