Funimation Fullscreen

Persistent Fullscreen, Full Window, and Popup Modes for the Funimation webplayer.

Что такое Funimation Fullscreen?

Funimation Fullscreen - это расширение Chrome, разработанное PolyBend, и его основная функция - "Persistent Fullscreen, Full Window, and Popup Modes for the Funimation webplayer.".

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

screenshot

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

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

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

                        September 18, 2022 - 2.2 Released.
 
Updated and fixed based on requests. Manifest V3 and fixed permissions based on Googles new ToA. All features should work. Let me know if you have issues...

Past Changelog: (mm-dd-yyyy)

10/01/2021 - 2.1.0.0
 - Both the old and new Funimation players are supported now. Funimation will likely roll out the new player to everyone over the next few months. In the meantime, both work. All new features will only be added to the new player.
 - Core code no longer massively optimized... Yeah, it isn't pretty supporting both. But it should still run totally fine.
 - Popup added back, even for the new player. I was surprised how many people wanted this.
 - Fixed a few bugs with the new player integration.
 - New player integration is much smarter. Even works if you hit F11 or any other fullscreen mode.

09/23/2021 - 2.0.0.0
 - Fixed to work with the new funimation web player.
 - Core code massively optimized.
 - Button panel removed, simply use the new player UI and the extension will do the rest.
 - Pop-out mode removed. With the new Funimation player, there is no reason for this addon to support this directly. If you want that functionality, you can use another extension like "Open-as-Popup". If you really want this added back in, let me know!

05/01/2021 - 1.6.1.2
 - Fixed to work with new site version. It looks like Funimation may be starting to host sperate site layouts per language/country. So if you have issues, please contact me and we can try to work it out.

07/19/2020 - 1.6.1.1
 - Fixed issue where video did not resize correctly when exiting fullscreen.

01/26/2020 - 1.6.1.0
 - Should only active on player pages now. 

01/24/2020 - 1.6.0.2
 - Fixed issue where popular shows page would lockup if fullscreen-windowed was enabled. 

01/15/2020 - 1.6.0.1
 - Fixed issue where scrollbar would appear.
 - Removed "Funimation Fullscreen" text. Was just a waste of space.
 - Controls transitions are now faster to be less intrusive.
 - Controls now properly hide when your mouse cursor exits the window. It should react similar to the default controls now.

01/14/2020 - 1.6.0.0
 - Fullscreen now fullscreens and fullwindows smartly. You can now simply click the fullscreen button to fullscreen everything at once. It will remember your previous mode settings when you exit fullscreen.
 - Codebase cleanup and features added for more robust feature set in the future versions.

01/13/2020 - 1.5.1.0
 - Fixed issue where page scrolling would not work sometimes on show details page.
 - Cleaned code and optimized code injection for faster runtime experience
 - Better workarounds to limit required permissions (Due to this, the extension should be compatible with other browsers)
 - Added in code for always on top... but it doesn't work yet. Permissions for developers to use these features have to be enabled by Google/Mozilla, etc... Cross our fingers for these feature                    

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

Название Funimation Fullscreen Funimation Fullscreen
ID hceoiabnmkpihamfhnmlallgefglfppf
Официальный URL https://chromewebstore.google.com/detail/funimation-fullscreen/hceoiabnmkpihamfhnmlallgefglfppf
Описание Persistent Fullscreen, Full Window, and Popup Modes for the Funimation webplayer.
Размер файла 24.19 KB
Количество установок 2,566
Текущая Версия 2.2.0.0
Последнее Обновление 2022-09-21
Дата публикации 2020-01-27
Рейтинг 3.69/5 Всего 32 оценок
Разработчик PolyBend
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Funimation Fullscreen",
    "version": "2.2.0.0",
    "description": "Persistent Fullscreen, Full Window, and Popup Modes for the Funimation webplayer.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.funimation.com\/*\/shows\/*"
            ],
            "js": [
                "content-old.js"
            ],
            "css": [
                "content-old.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.funimation.com\/player\/*"
            ],
            "all_frames": true,
            "js": [
                "content-player-old.js"
            ],
            "css": [
                "content-player-old.css"
            ]
        },
        {
            "matches": [
                "https:\/\/www.funimation.com\/v\/*"
            ],
            "js": [
                "content-player-new.js"
            ],
            "css": [
                "content-player-new.css"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_icon": {
            "16": "images\/ff16.png",
            "32": "images\/ff32.png",
            "48": "images\/ff48.png",
            "128": "images\/ff128.png"
        },
        "default_title": "Funimation Fullscreen"
    },
    "icons": {
        "16": "images\/ff16.png",
        "32": "images\/ff32.png",
        "48": "images\/ff48.png",
        "128": "images\/ff128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/fs.png",
                "images\/pu.png",
                "images\/fw.png"
            ],
            "matches": [
                "https:\/\/www.funimation.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}