Funimation Fullscreen

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

什麼是Funimation Fullscreen?

Funimation Fullscreen是由PolyBend開發的Chrome擴展程式,該擴展的主要功能是“Persistent Fullscreen, Full Window, and Popup Modes for the Funimation webplayer.”。

擴展截圖

screenshot

下載Funimation Fullscreen擴展crx文件

下載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
官方網址 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
}