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
公式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
Eメール [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
}